-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
114 lines (114 loc) · 3.53 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
{
"name": "react-svgpathplayer",
"description": "React component for animating an SVG path and/or a series of SVG paths.",
"author": "Steve Schwarz <steve@agilitynerd.com> (http://tech.agilitynerd.com/)",
"user": "saschwarz",
"scripts": {
"start": "webpack-dev-server",
"test": "karma start",
"tdd": "karma start --auto-watch --no-single-run",
"test:watch": "npm test -- --watch",
"gh-pages": "webpack",
"deploy-gh-pages": "node ./lib/deploy_gh_pages.js",
"dist": "webpack",
"dist-min": "webpack",
"dist-npm": "webpack",
"dist-modules": "npm run dist-npm && npm run dist && npm run dist-min",
"lint": "eslint . --ext .js --ext .jsx",
"report-coverage": "cat ./build/coverage/coverage-final.json | codecov",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0",
"preversion": "npm run test && npm run lint && write-version-to-package-json && npm run changelog",
"postpublish": "npm run gh-pages && npm run deploy-gh-pages",
"semantic-release": "semantic-release pre && npm run dist-modules && npm publish && semantic-release post"
},
"main": "dist/index.js",
"dependencies": {
"classnames": "^2.2.1",
"lodash": "^3.10.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"snapsvg": "^0.4.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.0.0",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"chai": "^3.3.0",
"chai-spies": "^0.7.1",
"clean-webpack-plugin": "^0.1.3",
"codecov.io": "^0.1.6",
"commitizen": "^2.4.6",
"conventional-changelog": "^0.5.3",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^1.6.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.13.1",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.4",
"gh-pages": "^0.5.0",
"git-prepush-hook": "^1.0.1",
"highlight.js": "^8.8.0",
"html-webpack-plugin": "^1.6.2",
"imports-loader": "^0.6.5",
"isparta-loader": "^1.0.0",
"json-loader": "^0.5.3",
"karma": "^0.13.16",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.2",
"karma-sourcemap-loader": "^0.3.5",
"karma-spec-reporter": "0.0.23",
"karma-webpack": "^1.7.0",
"marked": "^0.3.5",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"phantomjs": "^1.9.18",
"phantomjs-polyfill": "0.0.1",
"react-addons-test-utils": "^0.14.3",
"react-ghfork": "^0.3.2",
"react-hot-loader": "^1.3.0",
"react-transform-hmr": "^1.0.1",
"sass-loader": "^3.1.2",
"semantic-release": "^4.3.5",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"sync-exec": "^0.6.2",
"system-bell-webpack-plugin": "^1.0.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0",
"webpack-merge": "^0.7.0",
"write-version-to-package-json": "^1.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/saschwarz/react-svgpathplayer.git"
},
"homepage": "https://saschwarz.github.io/react-svgpathplayer/",
"bugs": {
"url": "https://github.com/saschwarz/react-svgpathplayer/issues"
},
"keywords": [
"react",
"reactjs",
"svg",
"animation"
],
"license": "MIT",
"pre-push": [
"test",
"lint"
],
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"version": "2.0.2"
}