-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 975 Bytes
/
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
{
"name": "react-create",
"version": "1.0.1",
"description": "Simple React CLI that aims to speed up development by generating desired React component markup based on your preferences via the command line.",
"scripts": {
"lint": "eslint src",
"clean": "rimraf lib",
"build": "npm run clean && babel src --out-dir lib",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ipeters90/react-create.git"
},
"keywords": [
"react",
"cli",
"component"
],
"author": "Ike Peters <[email protected]> (http://ikepeters.com)",
"license": "MIT",
"preferGlobal": true,
"bin": {
"react-create": "lib/index.js"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-preset-es2015": "^6.5.0",
"eslint": "^1.10.3",
"express": "^4.13.4",
"rimraf": "^2.5.2"
}
}