-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.19 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
{
"name": "react-progress-circle",
"version": "0.0.0-development",
"description": "Displays a progress in form of a circle",
"main": "./dist/all.min.js",
"scripts": {
"commit": "git-cz -n",
"coveralls": "cat ./coverage/report-lcov/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build": "NODE_ENV=production && webpack -p --display-modules --progress --display-reasons --config webpack.production.config.js",
"build:demo": "NODE_ENV=production && webpack -p --config webpack.demo.config.js",
"eslint": "node ./node_modules/.bin/eslint src/*.js* demo/*.js*",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "rm docs/demo.js ; webpack-dev-server --hot --inline --port 5000",
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "npm run eslint"
},
"files": [
"dist/*"
],
"pre-commit": [
"eslint"
],
"keywords": [
"progress",
"progress indicator"
],
"repository": {
"type": "git",
"url": "https://github.com/jonathanweiss/react-progress-circle.git"
},
"author": "Jonathan Weiss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathanweiss/react-progress-circle/issues"
},
"homepage": "https://github.com/jonathanweiss/react-progress-circle#readme",
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.5.1",
"sk-progress-circle": "^0.8.0",
"skatejs-react-integration": "^2.0.6"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-addon-knobs": "^1.7.1",
"@kadira/storybook-addons": "^1.6.1",
"babel-core": "^6.22.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-hmre": "^1.1.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.14.1",
"eslint-config-ak-base": "^5.3.0",
"mutationobserver-shim": "^0.3.2",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.4.2",
"semantic-release": "^6.3.2",
"webpack": "^2.3.0",
"webpack-dev-server": "^2.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}