-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
90 lines (90 loc) · 2.51 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "redux-cli",
"version": "2.0.0-0.2.1",
"description": "An opinionated CLI to make working on redux apps much faster.",
"main": "bin/bp.js",
"engine": {
"node": ">=5.1"
},
"scripts": {
"test": "jest --forceExit && codecov --token=75e3e765-443c-4d31-a8f5-b0ca3be8e55f",
"posttest": "npm run lint",
"test:nocov": "jest --coverage=false --forceExit",
"test:cov": "jest --forceExit",
"test:watch": "jest --forceExit --coverageReporters html --watch --notify",
"start": "npm run build:watch",
"pretty": "prettier --write --single-quote \"{src,test,blueprints}/**/*.js\" ",
"build": "babel src -d lib",
"build:watch": "babel src --watch -d lib",
"lint": "eslint ./src ./test ./blueprints",
"clean": "rimraf lib",
"publish:patch": "npm run clean && npm run build && npm version patch && npm publish",
"publish:minor": "npm run clean && npm run build && npm version minor && npm publish"
},
"keywords": [
"redux",
"react",
"cli",
"blueprint",
"generator",
"react.js",
"kit",
"app-kit",
"react-starter-kit",
"react-redux-starter-kit"
],
"author": "Spencer Dixon <[email protected]>",
"license": "MIT",
"bin": {
"bp": "bin/bp.js",
"blueprint": "bin/blueprint.js"
},
"dependencies": {
"chalk": "^1.1.1",
"denodeify": "^1.2.1",
"ejs": "^2.4.1",
"elegant-spinner": "^1.0.1",
"figlet": "^1.1.1",
"fs-extra": "^0.26.5",
"humps": "^1.0.0",
"jsonfile": "^2.2.3",
"lodash": "^4.5.1",
"log-update": "^1.0.2",
"minimist": "^1.2.0",
"prettyjson": "^1.2.1",
"prompt": "^1.0.0",
"rc": "^1.2.1",
"shelljs": "^0.6.0",
"temp": "^0.8.3",
"through": "^2.3.8",
"walk-sync": "^0.2.6",
"yargs": "^9.0.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.5.1",
"chai": "^3.5.0",
"codecov": "^2.3.0",
"eslint": "^4.7.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-ejs": "0.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.3.0",
"istanbul": "0.4.5",
"jest-cli": "^21.1.0",
"prettier": "^1.7.3",
"rimraf": "^2.5.2",
"sinon": "^1.17.3"
},
"repository": {
"type": "git",
"url": "https://github.com/SpencerCDixon/redux-cli"
},
"bugs": {
"url": "https://github.com/SpencerCDixon/redux-cli/issues"
}
}