-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.18 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
{
"author": {
"name": "Colin Meinke",
"email": "[email protected]",
"url": "https://colinmeinke.com"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
"es2015",
"react"
]
},
"bugs": {
"url": "https://github.com/colinmeinke/react-svg-chart/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"tweening": "^1.2.0"
},
"description": "Animated SVG charts for React",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"react": "^15.3.2",
"rimraf": "^2.5.4",
"semantic-release": "^4.3.5",
"snazzy": "^5.0.0",
"standard": "^8.5.0",
"webpack": "^1.13.3"
},
"keywords": [
"animate",
"bar",
"chart",
"data",
"ease",
"graph",
"line",
"path",
"points",
"react",
"svg",
"tween"
],
"license": "ISC",
"main": "lib/index.js",
"name": "react-svg-chart",
"peerDependencies": {
"react": "^15.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/colinmeinke/react-svg-chart.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:umd",
"build:lib": "babel src --out-dir lib",
"build:umd": "npm run build:umd:dev && npm run build:umd:pro",
"build:umd:dev": "webpack ./src/index.js ./dist/react-svg-chart.js --output-library ReactSVGChart --output-library-target umd --config ./webpack.config.babel.js",
"build:umd:pro": "webpack -p ./src/index.js ./dist/react-svg-chart.min.js --output-library ReactSVGChart --output-library-target umd --config ./webpack.config.babel.js",
"commit": "git-cz",
"fix": "standard --fix",
"lint": "standard --verbose | snazzy",
"prepublish": "npm run tidy && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"tidy": "rimraf lib dist"
},
"version": "0.0.0-semantically-released"
}