-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 KB
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
{
"name": "react-progress-display",
"version": "0.1.0",
"description": "A progress bar for react.",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --port 3000 --inline --hot",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexkeating/react-progress-display.git"
},
"author": "Alexander Keating",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexkeating/react-progress-display/issues"
},
"homepage": "https://github.com/alexkeating/react-progress-display#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.4",
"node-sass": "^4.5.3",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.5.4"
}
}