This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "d3-state-visualizer",
"version": "1.3.2",
"description": "Visualize your app state with a range of reusable charts",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint src examples",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/d3-state-visualizer.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/d3-state-visualizer.min.js --config webpack.config.production.js",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/romseguy/d3-state-visualizer.git"
},
"keywords": [
"d3",
"state",
"store",
"tree",
"visualization"
],
"author": "romseguy",
"license": "MIT",
"bugs": {
"url": "https://github.com/romseguy/d3-state-visualizer/issues"
},
"homepage": "https://github.com/romseguy/d3-state-visualizer",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.1.20",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-preset-es2015-loose": "^6.1.3",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^0.23",
"eslint-config-airbnb": "0.0.6",
"eslint-plugin-react": "^3.6.3",
"rimraf": "^2.3.4",
"webpack": "^1.9.6"
},
"peerDependencies": {},
"dependencies": {
"d3": "^3.5.6",
"d3tooltip": "^1.2.2",
"deepmerge": "^0.2.10",
"is-plain-object": "2.0.1",
"map2tree": "^1.4.0",
"ramda": "^0.17.1"
}
}