-
Notifications
You must be signed in to change notification settings - Fork 831
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.46 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.46 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-vis",
"version": "1.11.7",
"license": "MIT",
"author": "Visualization Team <visualization@uber.com>",
"description": "Data visualization library based on React and d3.",
"main": "dist",
"module": "es",
"jsnext:main": "es",
"files": [
"dist",
"es"
],
"repository": {
"type": "git",
"url": "https://github.com/uber-common/react-vis.git"
},
"bugs": {
"url": "https://github.com/uber-common/react-vis/issues/new",
"email": "visualization@uber.com"
},
"scripts": {
"docs": "./publish-docs.sh",
"lint": "eslint .",
"clean": "rm -rf dist es bundle.* index.html && mkdir dist es",
"start": "(cd showcase && command -v yarn >/dev/null && yarn && npm start || npm install && npm start)",
"build:browser": "browserify src/index.js -t [ babelify --rootMode upward ] --standalone reactVis | uglifyjs > dist/dist.min.js",
"build": "yarn run clean && babel --root-mode upward src -d dist --copy-files && BABEL_ENV=es babel --root-mode upward src -d es --copy-files && node-sass src/main.scss dist/style.css --output-style compressed && yarn run build:browser",
"lint-styles": "stylelint src/styles/*.scss --syntax scss",
"test:windows": "babel-node --inspect ./tests/index.js",
"test": "NODE_ENV=development jest",
"full-test": "npm run lint && npm run cover",
"cover": "NODE_ENV=development jest --coverage",
"prettier": "prettier --write $(git ls-files | grep '.js$')"
},
"dependencies": {
"d3-array": "^1.2.0",
"d3-collection": "^1.0.3",
"d3-color": "^1.0.3",
"d3-contour": "^1.1.0",
"d3-format": "^1.2.0",
"d3-geo": "^1.6.4",
"d3-hexbin": "^0.2.2",
"d3-hierarchy": "^1.1.4",
"d3-interpolate": "^1.1.4",
"d3-sankey": "^0.7.1",
"d3-scale": "^1.0.5",
"d3-shape": "^1.1.0",
"d3-voronoi": "^1.1.2",
"deep-equal": "^1.0.1",
"global": "^4.3.1",
"prop-types": "^15.5.8",
"react-motion": "^0.5.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"babel-plugin-module-resolver": "^4.0.0",
"babelify": "^10.0.0",
"browserify": "^14.3.0",
"canvas-prebuilt": "^1.6.11",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint-plugin-jest": "^23.13.2",
"jest": "^25.5.4",
"jsdom": "^9.9.1",
"node-sass": "^4.9.3",
"prettier": "^1.14.2",
"react": "^16.0.0",
"react-addons-test-utils": ">=15.4.2",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.13.1",
"react-vis-showcase": "^0.1.0",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.1",
"uglify-js": "^2.8.22"
},
"peerDependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"keywords": [
"d3",
"react",
"visualization",
"chart",
"es6",
"babel"
],
"nyc": {
"exclude": [
"tests/**/*.js",
"./utils/react-utils.js"
]
},
"engines": {
"node": ">=8.17.0",
"npm": ">=6.13.0"
},
"volta": {
"node": "10.20.1",
"yarn": "1.22.4"
}
}