-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "react-radial-progress",
"version": "0.0.0-semantically-released",
"description": "a radial progress bar in react js and SVG",
"main": "dist/index.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"build": "babel src/RadialProgress.js -o dist/index.js",
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "mocha src/index_test.js -w --compilers js:babel/register",
"test:single": "istanbul cover -x *_test.js _mocha -- -R spec src/index_test.js --compilers js:babel/register",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/samidarko/react-radial-progress.git"
},
"keywords": [
"radial",
"progress",
"React",
"Javascript",
"SVG"
],
"author": "Sami Darko <[email protected]> (https://github.com/samidarko)",
"license": "MIT",
"bugs": {
"url": "https://github.com/samidarko/react-radial-progress/issues"
},
"homepage": "https://github.com/samidarko/react-radial-progress#readme",
"devDependencies": {
"babel": "5.8.21",
"chai": "3.4.0",
"codecov": "1.0.1",
"commitizen": "2.3.0",
"cz-conventional-changelog": "1.1.4",
"ghooks": "0.3.2",
"istanbul": "0.4.0",
"mocha": "2.3.3",
"react": "0.14.1",
"react-addons-test-utils": "0.14.1",
"semantic-release": "^4.3.5"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:single"
}
}
}