-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.71 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
{
"name": "advanced-react-cli",
"version": "1.4.2",
"description": "NPM package which aims to provide a better way to install packages for your react application through an intuitive CLI",
"main": "cli.js",
"scripts": {
"react-cli": "node cli.js",
"format": "prettier-standard '**/*.{js,jsx}'",
"docs": "docsify serve docs",
"copy": "node ./scripts/copy.js",
"test": "jest",
"test:coverage": "jest --coverage",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"major-release": "npm version major && npm publish && git push --follow-tags"
},
"lint-staged": {
"**/*.{js,jsx}": [
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"bin": {
"arc": "cli.js"
},
"keywords": [
"react-cli",
"react cli",
"reactcli",
"cli-react",
"cli react",
"cli",
"advanced react cli",
"advanced-react-cli"
],
"author": "Dev Isle",
"license": "GNU GPLv3",
"dependencies": {
"axios": ">=0.21.1",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"cli-progress": "^3.6.0",
"clui": "^0.3.6",
"figlet": "^1.3.0",
"inquirer": "^6.4.1",
"ora": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devisle/advanced-react-cli.git"
},
"bugs": {
"url": "https://github.com/devisle/advanced-react-cli/issues"
},
"homepage": "https://advanced-react-cli.netlify.com/",
"devDependencies": {
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"prettier-standard": "^9.1.1"
}
}