forked from adonisjs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "adonis-framework",
"version": "2.0.10",
"description": "Adonis framework makes it easy for you to write webapps with less code",
"main": "index.js",
"scripts": {
"test": "npm run standard && istanbul cover _mocha --report lcovonly -- -R spec test/unit test/acceptance && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"coverage": "npm run standard && istanbul cover _mocha test/unit test/acceptance --bail",
"standard": "standard src/**/*.js src/**/**/*.js providers/*.js"
},
"keywords": [
"adonis-framework",
"mvc",
"mvc-framework"
],
"author": "adonisjs",
"license": "MIT",
"devDependencies": {
"adonis-fold": "^3.0.1",
"chai": "^3.3.0",
"cheerio": "^0.20.0",
"co-mocha": "^1.1.2",
"co-supertest": "0.0.10",
"coveralls": "^2.11.7",
"cz-conventional-changelog": "^1.1.5",
"formidable": "^1.0.17",
"istanbul": "^0.4.0",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.1.0",
"pem": "^1.8.1",
"standard": "^7.1.2",
"supertest": "^1.1.0",
"test-console": "^1.0.0",
"zombie": "^4.2.1"
},
"peerDependencies": {
"adonis-fold": "^3.0.1"
},
"dependencies": {
"bcryptjs": "^2.3.0",
"cat-log": "^1.0.0",
"co": "^4.6.0",
"dotenv": "^2.0.0",
"eventemitter2": "^1.0.2",
"lodash": "^4.11.2",
"mkdirp": "^0.5.1",
"node-cookie": "^1.0.2",
"node-exceptions": "^1.0.1",
"node-req": "^1.0.3",
"node-res": "^2.0.2",
"node-uuid": "^1.4.7",
"nunjucks": "^2.3.0",
"path-to-regexp": "^1.3.0",
"require-all": "^2.0.0",
"serve-static": "^1.10.2",
"type-of-is": "^3.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/adonis-framework.git"
},
"bugs": {
"url": "https://github.com/adonisjs/adonis-framework/issues"
},
"homepage": "https://github.com/adonisjs/adonis-framework#readme"
}