UNPKG

1.81 kBJSONView Raw
1{
2 "name": "d3-state-visualizer",
3 "version": "1.3.0",
4 "description": "Visualize your app state with a range of reusable charts",
5 "main": "lib/index.js",
6 "files": [
7 "dist",
8 "lib",
9 "src"
10 ],
11 "scripts": {
12 "clean": "rimraf lib dist",
13 "lint": "eslint src examples",
14 "build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
15 "build:lib": "babel src --out-dir lib",
16 "build:umd": "webpack src/index.js dist/d3-state-visualizer.js --config webpack.config.development.js",
17 "build:umd:min": "webpack src/index.js dist/d3-state-visualizer.min.js --config webpack.config.production.js",
18 "version": "npm run build",
19 "postversion": "git push && git push --tags && npm run clean",
20 "prepublish": "npm run clean && npm run build"
21 },
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/romseguy/d3-state-visualizer.git"
25 },
26 "keywords": [
27 "d3",
28 "state",
29 "store",
30 "tree",
31 "visualization"
32 ],
33 "author": "romseguy",
34 "license": "MIT",
35 "bugs": {
36 "url": "https://github.com/romseguy/d3-state-visualizer/issues"
37 },
38 "homepage": "https://github.com/romseguy/d3-state-visualizer",
39 "devDependencies": {
40 "babel-cli": "^6.3.15",
41 "babel-core": "^6.1.20",
42 "babel-eslint": "^5.0.0-beta4",
43 "babel-loader": "^6.2.0",
44 "babel-preset-es2015-loose": "^6.1.3",
45 "babel-preset-react": "^6.3.13",
46 "babel-preset-stage-0": "^6.3.13",
47 "eslint": "^0.23",
48 "eslint-config-airbnb": "0.0.6",
49 "eslint-plugin-react": "^3.6.3",
50 "rimraf": "^2.3.4",
51 "webpack": "^1.9.6"
52 },
53 "peerDependencies": {},
54 "dependencies": {
55 "d3": "^3.5.6",
56 "d3tooltip": "^1.2.2",
57 "deepmerge": "^0.2.10",
58 "is-plain-object": "2.0.1",
59 "map2tree": "^1.4.0",
60 "ramda": "^0.17.1"
61 }
62}