forked from webfansplz/null-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.21 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
89
90
91
{
"name": "null-cli",
"version": "1.0.1",
"description": "One line of command increases your productivity",
"main": "index.js",
"bin": {
"null": "bin/null.js"
},
"scripts": {
"cz": "commitizen init cz-conventional-changelog --save --save-exact",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint --fix lib/**/*.js bin/*.js utils/*.js",
"test": "nyc ava",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"deploy": "gh-pages -d docs/dist"
},
"ava": {
"files": [
"test/**/*.js"
]
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webfansplz/null-cli.git"
},
"keywords": [],
"author": "null",
"license": "MIT",
"bugs": {
"url": "https://github.com/webfansplz/null-cli/issues"
},
"homepage": "https://github.com/webfansplz/null-cli#readme",
"dependencies": {
"address": "^1.1.2",
"chalk": "^3.0.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^4.0.1",
"crypto-js": "^3.1.9-1",
"dayjs": "^1.8.17",
"default-gateway": "^5.0.5",
"ejs": "^2.7.4",
"execa": "^3.3.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"html-minifier": "^4.0.0",
"inquirer": "^7.0.0",
"is-chinese": "^1.2.9",
"isbinaryfile": "^4.0.2",
"minimist": "^1.2.0",
"no-case": "^2.3.2",
"open": "^7.0.0",
"ora": "^4.0.3",
"portfinder": "^1.0.25",
"qrcode": "^1.4.4",
"readline": "^1.3.0",
"request": "^2.88.0",
"rimraf": "^3.0.0",
"semver": "^6.3.0",
"slash": "^3.0.0",
"uglify-js": "^3.7.0",
"urlencode": "^1.1.0",
"valid-url": "^1.0.9",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"ava": "^2.4.0",
"clean-css": "^4.2.1",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"gh-pages": "^2.1.1",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"vuepress": "^1.2.0"
},
"engines": {
"node": ">=8.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}