forked from adonisjs/adonis-commands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "adonis-commands",
"version": "2.1.0",
"description": "Project scaffolding for Adonis framework",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run test:unit && npm run test:integration",
"test:unit": "_mocha test/unit",
"test:integration": "_mocha test/integration",
"lint": "standard src/**/*.js test/**/*js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/adonis-commands.git"
},
"author": "adonisjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/adonisjs/adonis-commands/issues"
},
"homepage": "https://github.com/adonisjs/adonis-commands#readme",
"peerDependencies": {
"adonis-fold": "^3.0.2"
},
"devDependencies": {
"adonis-ace": "git+https://github.com/adonisjs/ace.git#develop",
"adonis-fold": "^3.0.2",
"chai": "^3.5.0",
"co-mocha": "^1.1.2",
"commander": "^2.9.0",
"cz-conventional-changelog": "^1.1.5",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"standard": "^6.0.8"
},
"dependencies": {
"co-fs-extra": "^1.2.1",
"dotenv": "^2.0.0",
"hogan.js": "^3.0.2",
"inflect": "^0.3.0",
"randomstring": "^1.1.4",
"repl-plus": "^0.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}