-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "react-blueprint",
"version": "1.1.10",
"description": "React.js Redux Boilerplate",
"main": "index.js",
"scripts": {
"pkg": "npm run package && npm run package-cli",
"package": "npm rebuild && npm run clean && npm run build && npm version patch && npm publish --tag latest",
"package-cli": "cd cli && npm rebuild && npm version patch && npm publish --tag latest",
"build": "babel src -d lib",
"clean": "rimraf lib",
"lint": "eslint -c .eslintrc src",
"test": "karma start"
},
"engines": {
"node": ">=4.2.0"
},
"author": "Randy Lebeau <randylebeau@gmail.com> (https://github.com/supremetechnpriest)",
"repository": {
"type": "git",
"url": "https://github.com/supremetechnopriest/react-blueprint.git"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.16.0",
"babel-runtime": "^6.11.6",
"core-decorators": "^0.12.3",
"lodash": "^4.16.4"
},
"peerDependencies": {
"radium": "^0.x.x",
"react": "^15.x.x",
"react-dom": "^15.x.x"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.7.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"rimraf": "^2.5.4"
}
}