-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.56 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
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
{
"name": "@lovelope/r-cli",
"version": "1.0.2",
"description": "A cli for react-starter.",
"keywords": [
"cli",
"react"
],
"homepage": "https://github.com/lovelope/r-cli#readme",
"bugs": {
"url": "https://github.com/lovelope/r-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lovelope/r-cli.git"
},
"license": "MIT",
"author": "lovelope <lovelope@qq.com>",
"bin": {
"r-cli": "bin/r-cli.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"ignore": [
"package.json"
],
"linters": {
"*.{js,jsx}": [
"eslint --no-ignore --fix",
"git add --force"
],
"*.{json,md}": [
"prettier --write",
"git add --force"
],
"*.{css,less}": [
"stylelint --syntax less",
"git add --force"
]
}
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^2.20.0",
"fs-extra": "^8.0.1",
"inquirer": "^6.3.1",
"isomorphic-git": "^0.55.2",
"log-symbols": "^3.0.0",
"ora": "^3.4.0",
"semver": "^6.1.1",
"shelljs": "^0.8.3",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=8.9"
}
}