forked from uber/react-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.76 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "react-vis",
"version": "0.4.2",
"license": "MIT",
"author": "Anton Bulyenov <[email protected]>",
"description": "Data visualization library based on React and d3.",
"keywords": [
"d3",
"react",
"visualization",
"chart",
"es6",
"babel"
],
"repository": {
"type": "git",
"url": "https://github.com/uber-common/react-vis.git"
},
"bugs": {
"url": "https://github.com/uber-common/react-vis/issues/new",
"email": "[email protected]"
},
"main": "index.js",
"dependencies": {
"d3-array": "^0.7.1",
"d3-axis": "^0.3.1",
"d3-collection": "^0.1.2",
"d3-color": "^0.4.2",
"d3-hierarchy": "^0.2.2",
"d3-scale": "^0.7.0",
"d3-selection": "^0.7.1",
"d3-shape": "^0.6.0",
"d3-transition": "^0.2.8",
"deep-equal": "^1.0.1",
"global": "^4.3.0",
"warning": "^2.1.0"
},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"budo": "^8.0.3",
"enzyme": "^2.3.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.16.1",
"node-sass": "^3.4.2",
"react": ">=0.14.0",
"react-addons-shallow-compare": ">=0.14.0",
"react-addons-test-utils": ">=0.14.0",
"react-dom": ">=0.14.0",
"run-browser-babel": "^5.2.0",
"tape": "^4.0.0",
"uglify-js": "^2.6.1"
},
"peerDependencies": {
"react": "0.14.x - 15.x",
"react-addons-shallow-compare": "0.14.x - 15.x"
},
"scripts": {
"build-js": "babel src -d dist --copy-files",
"build-js-example": "npm run build-js -- --source-maps inline",
"build-docs": "browserify -t brfs ./dist/example/main.js > example.js",
"build-css": "node-sass src/main.scss main.css",
"build-css-example": "node-sass src/example/*.scss -o dist/example/",
"build-example": "npm run build-css-example && npm run build-js-example",
"watch-example": "(npm run build-css-example -- --watch) & (npm run build-js-example -- --watch) &",
"build": "npm run build-js && npm run build-css",
"watch": "npm run build-example && npm run watch-example && (budo dist/example/main.js --live --css dist/example/main.css)",
"lint": "eslint src",
"execute-tests": "run-browser-babel dist/test/index.js --bx react/addons --bx react/lib/ReactContext --bx react/lib/ExecutionEnvironment --phantom",
"test": "npm run build-js && npm run execute-tests",
"cover": "npm run build-js && npm run execute-tests -- --report=text --report=cobertura --report=html --report=json-summary",
"precommit": "npm run lint -s",
"prepublish": "npm run build"
},
"engines": {
"node": "0.10.x",
"npm": "3.x"
}
}