-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "adonis-generator",
"version": "0.3.2",
"description": "adonis scaffold with field",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zainul/adonis-generator.git"
},
"dependencies": {
"ejs": "^2.5.6",
"nunjucks": "^3.0.0",
"yamljs": "^0.2.8",
"co": "^4.6.0",
"co-fs-extra": "^1.2.1",
"dotenv": "^2.0.0",
"hogan.js": "^3.0.2",
"inflect": "^0.3.0",
"randomstring": "^1.1.5"
},
"devDependencies": {
"adonis-ace": "git+https://github.com/adonisjs/ace.git#develop",
"adonis-fold": "^3.0.3",
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"commander": "^2.9.0",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^1.2.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^3.4.1",
"mocha-lcov-reporter": "^1.3.0",
"standard": "^8.6.0"
},
"scripts": {
"lint": "standard src/**/*.js",
"test": "npm run lint",
"test:integration": "mocha -- test/integration/*.js",
"test:unit": "mocha -- test/unit/*.js",
"cover": "istanbul cover node_modules/mocha/bin/mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"author": "Zainul Mas'adi <[email protected]> (zainulmasadi.com)",
"license": "ISC"
}