-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
98 lines (98 loc) · 2.38 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
92
93
94
95
96
97
98
{
"name": "apfe-cli",
"version": "1.8.0",
"description": "Alipay+ ToolKit",
"keywords": [
"ToolKit",
"CLI",
"FrontEnd"
],
"repository": {
"type": "git",
"url": "https://github.com/ant-ife/apfe-cli.git"
},
"bugs": {
"url": "https://github.com/ant-ife/apfe-cli/issues"
},
"bin": {
"apfe": "bin/apfe.js"
},
"scripts": {
"ci": "npm run eslint-check && npm run lint && npm run test",
"lint": "eslint bin lib --ext .js --fix",
"build:docker": "docker build . -t=apfe/apfe-build-docker",
"test": "nyc --reporter=lcov --reporter=text mocha",
"contributor": "git-contributor",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add .",
"prepublishOnly": "np --yolo --no-publish",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"dependencies": {
"camelcase": "^5.0.0",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"consolidate": "^0.15.1",
"debug": "^4.1.0",
"deepmerge": "^2.2.1",
"fs-extra": "^7.0.1",
"git-branch": "^2.0.1",
"git-clone": "^0.1.0",
"gulp": "^3.9.1",
"gulp-tar": "~2.1.0",
"gulp-zip": "^4.2.0",
"handlebars": "^4.0.12",
"inquirer": "^6.2.0",
"ios-simulator": "^1.0.15",
"last-commit-log": "^1.0.13",
"map-stream": "^0.1.0",
"metalsmith": "^2.3.0",
"minimatch": "^3.0.4",
"multimatch": "^2.1.0",
"node-forge": "^0.7.6",
"ora": "^3.0.0",
"ramda": "^0.26.0",
"ramda-fantasy": "^0.8.0",
"read-metadata": "^1.0.0",
"request": "^2.88.0",
"rimraf": "^2.6.2",
"sao": "^1.6.1",
"semver": "^5.6.0",
"shelljs": "^0.8.3",
"user-home": "^2.0.0",
"validate-npm-package-name": "^3.0.0",
"win-spawn": "^2.0.0"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.12",
"eslint": "^5.9.0",
"eslint-config-antife": "^2.0.0",
"eslint-config-prettier": "^4.0.0",
"git-contributor": "^1.0.8",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"np": "^4.0.1",
"nyc": "^13.1.0",
"prettier": "^1.16.4"
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT"
}