-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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
{
"name": "@beautywe/cli",
"version": "1.0.4",
"description": "CLI for beautywe",
"main": "index.js",
"bin": {
"beautywe": "bin/beautywe"
},
"scripts": {
"code-check": "eslint src/**",
"code-fix": "eslint --fix src/**",
"lint": "git diff --cached --name-only | grep -E '\\.(js|jsx)$' | xargs eslint",
"commitmsg": "validate-commit-msg",
"commit": "git cz"
},
"repository": {
"type": "git",
"url": "git@gitlab.qima-inc.com:sz-web/beautywe-cli.git"
},
"keywords": [
"beautywe",
"beautywe-cli"
],
"author": "JerryC8080 (huangjerryc@gmail.com)",
"license": "MIT",
"dependencies": {
"@beautywe/framework": "^1.0.0",
"find-up": "^3.0.0",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"lodash": "^4.17.11",
"signale": "^1.3.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"commitizen": "^3.1.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"validate-commit-msg": "^2.14.0"
}
}