-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.63 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
{
"name": "flash-tool",
"version": "0.0.1",
"license": "MIT",
"bin": {
"flash": "dist/bin/index.js"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"start": "ts-node bin/index.ts",
"build": "rm -rf dist typings && tsc -p .",
"lint": "eslint . --ext .ts",
"prettier": "prettier .ts test --write",
"cz": "git-cz",
"release": "standard-version",
"deploy": "npm run build && npm publish --access public",
"prepare": "husky install"
},
"dependencies": {
"boxen": "^5.0.1",
"chalk": "^4.1.0",
"commander": "^7.2.0",
"download-git-repo": "^3.0.2",
"figlet": "^1.5.0",
"fs-extra": "^9.1.0",
"handlebars": "^4.7.7",
"inquirer": "^8.0.0",
"ora": "^5.4.0",
"progress": "^2.0.3",
"shelljs": "^0.8.4",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/node": "^14.14.37",
"@umijs/fabric": "^2.5.7",
"commitizen": "^4.2.3",
"cz-conventional-changelog-emoji": "^0.1.0",
"eslint": "^7.24.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"standard-version": "^9.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"types": "typings/**/*.d.ts",
"lint-staged": {
"*.ts": [
"eslint -c .eslintrc.js",
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog-emoji"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}