-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.8 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
{
"name": "yard3",
"version": "0.7.0",
"description": "yet another react-d3 integration library",
"scripts": {
"lint": "eslint './src/**/*'",
"dev": "webpack-dev-server --devtool eval --progress",
"build": "NODE_ENV=production babel ./src/index.js -d dist/ ",
"prepublish": "npm run build",
"test": "echo \"Error: no tests ...yet\" && exit 1",
"styleguide-server": "styleguidist server",
"styleguide-build": "styleguidist build"
},
"repository": {
"type": "git",
"url": "https://github.com/jameslaneconkling/yard3.git"
},
"keywords": [
"react",
"d3"
],
"author": "jameslaneconkling",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-es2015-destructuring": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.25.0",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.0",
"html-webpack-plugin": "^2.24.1",
"json-loader": "^0.5.4",
"node-sass": "^3.11.1",
"ramda": "^0.22.1",
"react-container-dimensions": "^1.3.0",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"react-resizable": "^1.6.0",
"react-styleguidist": "^4.2.3",
"rxjs": "^5.0.0-rc.1",
"sample_datasets": "git+https://github.com/jameslaneconkling/sample_datasets.git",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-validator": "^2.2.9"
},
"dependencies": {
"d3": "^4.3.0",
"react": "^0.14.7"
},
"main": "dist/index.js"
}