-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.48 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "component-store",
"version": "0.3.1",
"description": "component store",
"homepage": "https://github.com/flutejs/component-store",
"author": "http://github.com/zinkey/",
"repository": {
"type": "git",
"url": "https://github.com/flutejs/component-store.git"
},
"main": "./lib/index",
"files": [
"lib"
],
"entry": {
"index": "./index"
},
"scripts": {
"build": "atool-build -o lib",
"pub": "npm run build && npm publish",
"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": {},
"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.2",
"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",
"dora": "0.3.x",
"es3ify-loader": "^0.2.0",
"eslint": "^2.5.3",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^5.1.1",
"gh-pages": "^0.11.0",
"less": "~2.6.0",
"pre-commit": "^1.1.2",
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"pre-commit": [
"lint"
],
"license": "MIT"
}