-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "react-datamaps",
"version": "0.4.1",
"description": "React component for D3 DataMaps",
"license": "MIT",
"repository": "btmills/react-datamaps",
"homepage": "https://github.com/btmills/react-datamaps#readme",
"bugs": {
"url": "https://github.com/btmills/react-datamaps/issues"
},
"author": {
"name": "Brandon Mills",
"email": "[email protected]",
"url": "https://github.com/btmills"
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rm -rf lib",
"prepublish": "npm run rebuild",
"postpublish": "npm run clean",
"rebuild": "npm run clean && npm run build",
"test": "eslint --ext js --ext jsx ."
},
"keywords": [
"react",
"datamaps",
"d3",
"react-component"
],
"main": "lib/index.js",
"files": [
"lib/*.js"
],
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
},
"dependencies": {
"datamaps": "^0.4.2",
"prop-types": "^15.5.10"
},
"devDependencies": {
"@btmills/eslint-config-btmills": "^1.0.0-beta.6",
"babel-cli": "^6.4.5",
"babel-eslint": "^6.1.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.2.2"
}
}