-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.01 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
{
"name": "reactist",
"description": "A Command Line Interface tool that automate workflow when your working with React.js project",
"version": "0.1.1",
"main": "index.js",
"preferGlobal": true,
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --opts './mocha.opts' 'src/!(ingredients)/**/__tests__/**/*-test.js'"
},
"bin": {
"react": "bin/react-cli.js"
},
"author": {
"name": "KimcCoding",
"email": "jeokrang@gmail.com",
"url": "http://huns.me"
},
"bugs": {
"url": "https://github.com/CoderK/reactist/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoderK/reactist.git"
},
"license": "MIT",
"engines": { "node": ">= 5.7.0" },
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"dependencies": {
"commander": "^2.9.0",
"inquirer": "^1.0.2",
"jsonfile": "^2.3.0",
"prompt": "^1.0.0",
"shelljs": "^0.7.0"
},
"keywords": [
"react",
"redux",
"react-cli",
"redux-cli"
]
}