-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.32 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.32 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
{
"name": "@r-next-b/cli",
"version": "0.1.1",
"description": "Simple commands to manage and facilitate specific react-next-boilerplate tasks",
"main": "index.js",
"files": [
"{bin,src}/*.js",
"templates",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/react-next-boilerplate/RNB-CLI.git"
},
"author": "Jorge Luis Calleja <jorge.calleja@wootsbot.dev>",
"maintainers": [
"Jorge Luis Calleja <jorge.calleja@wootsbot.dev>"
],
"contributors": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/react-next-boilerplate/RNB-CLI/issues"
},
"homepage": "https://github.com/react-next-boilerplate/RNB-CLI#readme",
"keywords": [
"react-next-boilerplate",
"react",
"nextjs",
"cli",
"commands",
"node"
],
"scripts": {
"lint": "jshint ./src ./index.js"
},
"bin": {
"rnb": "./bin/rnb-cli.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"jshint ./src ./index.js"
]
},
"dependencies": {
"inquirer": "^7.1.0",
"minimist": "^1.2.5",
"shelljs": "^0.8.3",
"signale": "^1.4.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"husky": "^4.2.3",
"jshint": "^2.11.0",
"lint-staged": "^10.0.8"
}
}