forked from adonisjs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.08 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "adonis-framework",
"version": "3.0.12",
"description": "Adonis framework makes it easy for you to write webapps with less code",
"main": "index.js",
"scripts": {
"test": "npm run lint && FORCE_COLOR=true node ./bin/test.js",
"coverage": "npm run lint && FORCE_COLOR=true node ./bin/coverage.js",
"lint": "standard"
},
"standard": {
"global": [
"it",
"describe",
"context",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"keywords": [
"adonis-framework",
"mvc",
"mvc-framework"
],
"author": "adonisjs",
"license": "MIT",
"devDependencies": {
"adonis-fold": "^3.0.3",
"adonis-redis": "^1.0.1",
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"co-mocha": "^1.1.3",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "^2.0.0",
"formidable": "^1.1.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"pem": "^1.9.4",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"sinon": "^1.17.7",
"standard": "^8.6.0",
"supertest": "^3.0.0",
"test-console": "^1.0.0",
"zombie": "^5.0.5"
},
"dependencies": {
"adonis-binding-resolver": "^1.0.1",
"bcryptjs": "^2.4.0",
"bytes": "^2.4.0",
"cat-log": "^1.0.2",
"co": "^4.6.0",
"co-fs-extra": "^1.2.1",
"dotenv": "^2.0.0",
"eventemitter2": "^3.0.0",
"lodash": "^4.17.4",
"node-cookie": "^1.0.3",
"node-exceptions": "^1.0.3",
"node-req": "^1.0.5",
"node-res": "^3.0.1",
"nunjucks": "^3.0.0",
"path-to-regexp": "^1.7.0",
"require-all": "^2.1.0",
"serve-static": "^1.11.2",
"type-of-is": "^3.4.0",
"uuid": "^3.0.1"
},
"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"
}