-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"author": {
"name": "Colin Meinke",
"email": "[email protected]",
"url": "www.colinmeinke.com"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
"es2015",
"react"
]
},
"bugs": {
"url": "https://github.com/colinmeinke/react-svg-chart/issues"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"express": "^4.14.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"description": "SVG charts line chart example",
"devDependencies": {
"babelify": "^7.3.0",
"browserify": "^13.1.1"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/colinmeinke/react-svg-chart.git"
},
"scripts": {
"build": "browserify ./client.js -o ./client.dist.js -t babelify",
"start": "npm run build && babel-node ./server.js"
},
"version": "0.0.0-semantically-released"
}