-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "d3-stacked-rect",
"version": "1.3.1",
"dependencies": {
"d3": "^5.9.7",
"ramda": "^0.26.1"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"main": "dist/index.js",
"scripts": {
"start": "parcel ./example/index.html",
"prepublish": "npm run build",
"build": "babel src --out-dir dist"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cthroo/d3-stacked-rect"
},
"keywords": ["d3", "rect", "react-d3"],
"files": ["dist"],
"author": "Robert Chang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cthroo/d3-stacked-rect"
},
"homepage": "https://github.com/cthroo/d3-stacked-rect#readme"
}