This repository has been archived by the owner on Nov 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
85 lines (85 loc) · 1.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "g2-react",
"version": "1.3.2",
"description": "factory wrapper for g2",
"keywords": [
"react",
"react-component",
"rc-g2",
"g2-react",
"g2"
],
"homepage": "https://github.com/antvis/g2-react",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/antvis/g2-react.git"
},
"bugs": {
"url": "https://github.com/antvis/g2-react/issues"
},
"licenses": "MIT",
"entry": {
"index": "./index"
},
"main": "./lib/index",
"files": [
"lib",
"dist"
],
"scripts": {
"compile": "rm -rf lib && babel src --out-dir lib",
"build": "atool-build",
"lint": "eslint --ext .js src",
"test": "npm run lint && atool-test",
"coverage": "atool-test-mocha --coverage --recursive tests",
"doc": "atool-doc",
"doc-build": "atool-doc --build",
"gh-pages": "atool-doc --build && gh-pages -d __site",
"pub": "npm run compile && npm run build && npm publish"
},
"peerDependencies": {
"g2": ">=1.2.6 <3.0.0"
},
"devDependencies": {
"atool-build": "~0.7.5",
"atool-doc": "~0.7.0",
"atool-test": "^0.4.16",
"babel-cli": "^6.23.0",
"babel-eslint": "^6.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"dora": "~0.3.2",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"expect.js": "^0.3.1",
"g2": "^2.0.0",
"g2-plugin-slider": "~1.2.0",
"gh-pages": "^0.11.0",
"pre-commit": "1.x",
"react": "latest",
"react-dom": "latest",
"webpack": "~1.12.14"
},
"pre-commit": [
"lint"
],
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"dependencies": {
"prop-types": "^15.5.7"
}
}