-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.29 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
{
"name": "react-d3-responsive",
"version": "0.1.9",
"description": "D3 with React",
"main": "index.js",
"scripts": {
"start-message": "babel-node tools/startMessage.js",
"prestart": "npm-run-all --parallel start-message remove-dist",
"start": "npm-run-all --parallel open:src lint:watch",
"open:src": "babel-node tools/srcServer.js",
"open:dist": "babel-node tools/distServer.js",
"lint": "node_modules/.bin/esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "node_modules/.bin/rimraf ./dist",
"build:html": "babel-node tools/buildHtml.js",
"prebuild": "npm run clean-dist && npm run build:html",
"build": "babel-node tools/build.js && npm run open:dist",
"npm-build": "npm run clean-npm-build && npm run babel-compile && babel-node tools/npmBuild.js",
"clean-npm-build": "node_modules/.bin/rimraf ./npm-lib",
"babel-compile": "babel src/app/d3components --out-dir npm-lib",
"npm-public": "npm version patch && npm publish"
},
"keywords": [
"react",
"d3",
"responsive"
],
"author": {
"name": "Drew Thorson",
"email": "[email protected]",
"url": "http://drewthorson.com/"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.18.0",
"babel-preset-latest": "6.14.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.18.0",
"browser-sync": "2.14.3",
"cheerio": "0.20.0",
"colors": "1.1.2",
"connect-history-api-fallback": "1.2.0",
"copy-webpack-plugin": "3.0.1",
"eslint": "3.4.0",
"eslint-plugin-import": "1.14.0",
"eslint-plugin-react": "6.2.0",
"eslint-watch": "2.1.14",
"eventsource-polyfill": "0.9.6",
"extract-text-webpack-plugin": "1.0.1",
"npm-run-all": "2.1.2",
"transfer-webpack-plugin": "0.1.4",
"webpack": "1.13.2",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.12.2"
},
"dependencies": {
"d3": "^3.5.4",
"react": "^0.14.0 || ^15.0.1",
"react-dom": "^0.14.0 || ^15.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/cox-auto-kc/react-d3-responsive"
}
}