-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
77 lines (77 loc) · 2.09 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
{
"name": "react-progressbar",
"version": "15.4.1",
"description": "Basic progress bar in React",
"main": "lib/index.js",
"scripts": {
"build": "babel -d lib/ src/",
"prepublish": "npm run build",
"format": "node_modules/.bin/prettier --write \"{src,test}/**/*.js\"",
"test": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- test/*.js",
"coverage": "istanbul cover _mocha -- --ui bdd -R spec -t 5000;open ./coverage/lcov-report/index.html",
"cover": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@types/prettier": "^1.10.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-istanbul": "^0.11.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"coveralls": "^2.11.15",
"enzyme": "^2.9.1",
"expect": "^1.20.2",
"jsdom": "^9.8.3",
"jsdom-global": "^2.1.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"prettier": "^1.11.1",
"react": "^15.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.0.0",
"react-test-renderer": "^15.0.0",
"sinon": "^1.17.6"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"keywords": [
"react-component",
"react",
"progress",
"bar"
],
"browserify": {
"transform": [
[
"reactify",
{
"harmony": true
}
]
]
},
"repository": {
"type": "git",
"url": "git@github.com:abdennour/react-progressbar.git"
},
"bugs": {
"url": "https://github.com/abdennour/react-progressbar/issues"
},
"homepage": "https://github.com/abdennour/react-progressbar",
"author": "Param Aggarwal",
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}