This repository has been archived by the owner on Jun 8, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
88 lines (88 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
88
{
"name": "@adonisjs/cli",
"version": "4.0.13",
"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": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc node japaFile.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"commit": "git-cz",
"lint": "standard",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"@adonisjs/ace": "^5.0.8",
"@adonisjs/ignitor": "^2.0.8",
"adonis-await-outside": "^1.0.0",
"cli-step": "^1.0.2",
"debug": "^4.1.0",
"dotenv": "^8.0.0",
"gradient-string": "^1.2.0",
"is-git-url": "^1.0.0",
"lodash": "^4.17.11",
"marked": "^1.1.1",
"nodemon": "^2.0.3",
"opn": "^5.4.0",
"pluralize": "^8.0.0",
"randomstring": "^1.1.5",
"semver": "^5.6.0",
"snyk": "^1.231.0"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/mrm-preset": "^2.0.3",
"@adonisjs/sink": "^1.0.17",
"clear-require": "^3.0.0",
"commitizen": "^3.0.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"fs-extra": "^8.1.0",
"japa": "^2.0.6",
"japa-cli": "^1.0.1",
"mrm": "^1.2.1",
"nyc": "^14.1.1",
"pkg-ok": "^2.3.1",
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/adonis-cli.git"
},
"bugs": {
"url": "https://github.com/adonisjs/adonis-cli/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"test"
]
},
"homepage": "https://github.com/adonisjs/adonis-cli#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"snyk": true
}