-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.74 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
72
73
74
{
"name": "react-redux-generator",
"version": "1.0.5",
"description": "This is a generator to create react redux project",
"main": "dist/reactReduxGenerator.cjs.js",
"keywords": [
"generator",
"rollup",
"react",
"redux"
],
"author": {
"name": "Bowen Li",
"email": "superdev@outlook.com.au"
},
"dependencies": {
"camel-case": "^3.0.0",
"chalk": "^2.3.0",
"clear": "^0.0.1",
"clui": "^0.3.6",
"commander": "^2.12.2",
"figlet": "^1.2.0",
"handlebars": "^4.0.11",
"inquirer": "^4.0.1",
"mkdirp": "^0.5.1",
"pascal-case": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"faucet": "^0.0.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "1.9.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-execute": "^1.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"preferGlobal": true,
"bin": {
"RRG": "dist/reactReduxGenerator.cjs.js"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js | faucet",
"RRG": "plop --plopfile dist/reactReduxGenerator.es.js",
"pretest": "npm run build",
"precommit": "lint-staged",
"format": "prettier --trailing-comma es5 --single-quote --no-semi --write 'src/**/*.js'"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier prettier --trailing-comma es5 --single-quote --no-semi --write",
"git add"
],
"yarn.lock": [
"git rm --cached",
"git add"
]
},
"repository": {
"type": "git",
"url": "git@github.com:bowen31337/react-redux-generator.git"
},
"engines": {
"node": ">=8.4.0"
}
}