forked from adonisjs/adonis-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.91 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
{
"name": "@adonisjs/cli",
"version": "3.0.12",
"description": "Command line tool for Adonisjs",
"keywords": [
"adonis",
"adonisjs",
"cli",
"installer"
],
"author": "Harminder Virk <virk@adonisjs.com>",
"contributors": [
"Romain Lanz <romain.lanz@slynova.ch>"
],
"license": "MIT",
"main": "src/Commands/index.js",
"bin": {
"adonis": "index.js"
},
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc npm run test:local",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"@adonisjs/ace": "^4.0.4",
"@adonisjs/ignitor": "^1.0.4",
"adonis-await-outside": "^1.0.0",
"boxen": "^1.2.1",
"cli-spinner": "^0.2.6",
"dotenv": "^4.0.0",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"nodemon": "^1.11.0",
"opn": "^5.1.0",
"pify": "^3.0.0",
"pluralize": "^7.0.0",
"randomstring": "^1.1.5",
"semver": "^5.4.1"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.2",
"@adonisjs/sink": "^1.0.11",
"chalk": "^2.0.1",
"clear-require": "^2.0.0",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"dedent": "^0.7.0",
"fs-extra": "^4.0.1",
"japa": "^1.0.3",
"japa-cli": "^1.0.1",
"nyc": "^11.1.0",
"standard": "^10.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/adonis-cli.git"
},
"bugs": {
"url": "https://github.com/adonisjs/adonis-cli/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": ["bin", "test"]
},
"homepage": "https://github.com/adonisjs/adonis-cli#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}