-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "rcf",
"version": "0.5.2",
"description": "clear store management",
"homepage": "http://github.com/flutejs/rcf",
"author": "yaya <yaya@uloveit.com.cn>",
"repository": {
"type": "git",
"url": "https://github.com/flutejs/rcf.git"
},
"main": "./lib/index",
"entry": {
"index": "./index"
},
"scripts": {
"compile": "rm -rf lib && babel src --out-dir lib",
"build": "atool-build",
"lint": "eslint --ext .js src",
"test": "atool-test",
"doc": "atool-doc",
"doc-build": "atool-doc --build",
"gh-pages": "atool-doc --build && gh-pages -d __site"
},
"dependencies": {
"es6-weak-map": "^2.0.1",
"is-plain-object": "^2.0.1",
"is-promise": "^2.1.0",
"object-assign": "^4.0.1"
},
"devDependencies": {
"atool-build": "0.6.x",
"atool-doc": "^0.1.0",
"atool-test": "^0.4.5",
"babel-cli": "~6.6.4",
"babel-core": "~6.7.4",
"babel-eslint": "^6.0.4",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015": "~6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "~6.5.0",
"classnames": "^2.2.5",
"dora": "0.3.x",
"es3ify-loader": "^0.2.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "6.x",
"eslint-plugin-react": "4.x",
"gh-pages": "^0.11.0",
"immutable-data": "^2.0.5",
"less": "~2.6.0",
"pre-commit": "^1.1.2",
"react": "0.14.x",
"react-addons-perf": "^15.0.2",
"react-dom": "0.14.x",
"todomvc-app-css": "^2.0.4"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"pre-commit": [
"lint"
],
"license": "MIT"
}