-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
50 lines (50 loc) · 1.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
{
"name": "react-progress-button",
"version": "5.1.0",
"description": "Simple react.js component for a inline progress indicator",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"lib",
"src",
"react-progress-button.css"
],
"dependencies": {
"prop-types": "^15.6.0",
"create-react-class": "^15.6.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"standard": "^8.6.0",
"webpack": "^3.6.0"
},
"scripts": {
"prepublish": "make clean build",
"test": "make test",
"build": "make build"
},
"repository": {
"type": "git",
"url": "https://github.com/mathieudutour/react-progress-button"
},
"keywords": [
"react",
"progress",
"button",
"component",
"javascript",
"react-component"
],
"author": "Mathieu Dutour",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieudutour/react-progress-button/issues"
},
"homepage": "https://github.com/mathieudutour/react-progress-button"
}