forked from spotify/reactochart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.22 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
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
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "reactochart",
"description": "Reactochart - React Charts, graphs and data visualization",
"author": "Dan Delany <[email protected]>",
"contributors": [
"Kris Salvador <[email protected]>"
],
"version": "3.0.1",
"main": "index.js",
"files": [
"*.js",
"*.js.map",
"styles.css",
"utils/",
"src/"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"analyze-bundle": "source-map-explorer node_modules ./*.js ./*.js.map ./utils styles.css src/",
"lint": "eslint ./src ./docs/src",
"lint-fix": "eslint ./src --fix",
"prepublishOnly": "npm run build",
"build": "npm run build-lib && npm run build-css",
"dev": "webpack-dev-server --config webpack.config.base.js",
"docs": "npm run make-docs && npm run build-docs",
"build-lib": "npm run clean && BABEL_ENV=production babel src --out-dir ./ --source-maps",
"build-css": "lessc ./styles/charts.less ./styles.css",
"build-docs": "cross-env webpack --config webpack.config.build.js",
"make-docs": "node scripts/makeDocs.js",
"clean": "node scripts/clean.js",
"serve": "python -m SimpleHTTPServer",
"test": "npm run test-jsdom && npm run lint",
"test-files": "cross-env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --require @babel/register tests/jsdom/setup.js --recursive",
"test-browser": "webpack-dev-server --config tests/browser/webpack.config.test.js",
"test-jsdom": "cross-env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --require @babel/register tests/jsdom/setup.js --recursive tests/jsdom/spec",
"test-watch": "cross-env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --watch --require @babel/register tests/jsdom/setup.js --recursive tests/jsdom/spec"
},
"dependencies": {
"d3": "^5.9.7",
"d3-sankey": "^0.12.1",
"invariant": "^2.2.0",
"lodash": "^4.17.15",
"prop-types": "^15.5.10",
"units-css": "^0.4.0"
},
"peerDependencies": {
"react": "^15.6.0 || ^16.0.0",
"react-dom": "^15.6.0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@spotify/eslint-config-base": "^6.0.0",
"@spotify/eslint-config-react": "^6.0.0",
"@spotify/prettier-config": "^6.0.0",
"@spotify/web-scripts": "^3.0.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.1.1",
"chai-enzyme": "^1.0.0-beta.0",
"clean-webpack-plugin": "^3.0.0",
"component-playground": "^3.2.1",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^7.0.0",
"css-loader": "^3.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "6.8.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"glob": "^7.1.2",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^15.2.0",
"husky": "^3.1.0",
"json-loader": "^0.5.2",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lessc": "^1.0.2",
"mocha": "^7.0.1",
"prettier": "~1.18.2",
"raw-loader": "^3.1.0",
"react": "^16.6.3",
"react-addons-update": "^15.6.0",
"react-docgen": "4.1.1",
"react-dom": "^16.6.3",
"react-pure-render-debug": "^1.1.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-test-renderer": "^16.6.3",
"remark": "^11.0.1",
"remark-react": "^6.0.0",
"rewire": "^4.0.1",
"shelljs": "^0.8.3",
"sinon": "^8.0.0",
"sinon-chai": "^3.3.0",
"source-map-explorer": "^2.0.1",
"style-loader": "^1.0.0",
"webpack": "^4.27.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/spotify/reactochart"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"husky": {
"hooks": {
"pre-commit": "web-scripts precommit"
}
}
}