-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "reactmvc",
"version": "2.0.11",
"description": "M(immutable model)V(view component)C(react-router)",
"keywords": [
"async props",
"immutable model",
"mvc",
"react"
],
"homepage": "https://github.com/ustccjw/react-mvc#readme",
"bugs": {
"url": "https://github.com/ustccjw/react-mvc/issues"
},
"license": "MIT",
"author": "ustccjw",
"main": "lib/index",
"repository": {
"type": "git",
"url": "git+https://github.com/ustccjw/react-mvc.git"
},
"scripts": {
"build": "npm run clean && babel src --out-dir lib",
"clean": "rimraf lib",
"lint": "eslint --ext .js,.jsx .",
"publish": "npm run build && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-cli": "6",
"babel-eslint": "6",
"babel-preset-es2015": "6",
"babel-preset-react": "6",
"babel-preset-stage-0": "6",
"eslint": "3",
"eslint-config-airbnb": "9",
"eslint-plugin-import": "1",
"eslint-plugin-jsx-a11y": "1",
"eslint-plugin-react": "5",
"pre-commit": "1",
"rimraf": "2"
},
"peerDependencies": {
"react": "0.14 || 15",
"react-router": "2"
},
"engines": {
"node": "6"
},
"pre-commit": [
"lint"
]
}