forked from spotify/reactochart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.72 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
{
"name": "reactochart",
"description": "Reactochart - React Charts, graphs and data visualization",
"author": "Dan Delany <[email protected]>",
"contributors": [
"Kris Salvador <[email protected]>"
],
"version": "0.4.8",
"main": "index.js",
"files": [
"*.js",
"*.js.map",
"styles.css",
"utils/",
"src/"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"lint": "eslint ./src",
"lint-fix": "eslint ./src ./tests --ext .js --fix",
"prepublish": "npm run build",
"build": "npm run build-lib && npm run build-css && npm run docs",
"dev": "webpack-dev-server --config webpack.config.base.js",
"docs": "npm run make-docs && npm run build-docs",
"build-lib": "npm run clean && babel src --out-dir ./ --source-maps",
"build-css": "lessc ./styles/charts.less ./styles.css",
"build-docs": "BABEL_ENV=production 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 test-lint",
"test-files": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive",
"test-browser": "webpack-dev-server --config tests/browser/webpack.config.test.js",
"test-jsdom": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec",
"test-lint": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/eslint.spec.js",
"test-watch": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --watch --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec"
},
"dependencies": {
"d3": "^4.4.0",
"d3-sankey": "^0.7.1",
"invariant": "^2.2.0",
"lodash": "^4.5.1",
"measure-text": "0.0.4",
"moment": "^2.10.6",
"numeral": "^2.0.6",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": ">=0.14.0, <16.0.0",
"react-dom": ">=0.14.0, <16.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^4.1.1",
"chai-enzyme": "^0.8.0",
"clean-webpack-plugin": "^0.1.16",
"component-playground": "^1.3.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-prettier": "2.6.0",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^9.12.0",
"json-loader": "^0.5.2",
"less": "^3.0.4",
"less-loader": "^4.0.5",
"mocha": "4.0.1",
"prettier": "1.13",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-addons-update": "^15.6.0",
"react-docgen": "2.17.0",
"react-dom": "^15.6.1",
"react-pure-render-debug": "^1.1.1",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"remark": "^8.0.0",
"remark-react": "^4.0.1",
"rewire": "^3.0.2",
"shelljs": "^0.7.8",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.7.1"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/spotify/reactochart"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}