This repository has been archived by the owner on Mar 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "material-ui-status-stepper",
"version": "0.1.1",
"description": "Material UI Status Stepper",
"main": "app/app.js",
"author": "virgil9306",
"homepage": "https://github.com/Virgil9306/material-ui-status-stepper",
"repository": {
"type": "git",
"url": "https://github.com/Virgil9306/material-ui-status-stepper.git"
},
"nyc": {
"include": [
"./src/**/*.js*"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"scripts": {
"start": "webpack --progress --colors --watch",
"test": "nyc mocha --require test/utils/setup.js --compilers js:babel-register test/**/*.spec.js",
"pack": "babel ./src/index.js > ./app/app.js --presets stage-1"
},
"bugs": {
"url": "https://github.com/virgil9306/material-ui-status-stepper/issues"
},
"license": "MIT",
"dependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.3.26",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.1",
"enzyme": "^2.9.1",
"istanbul": "^0.4.5",
"jsdom": "^11.1.0",
"material-ui": "0.18.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-test-utils": "^15.6.0",
"react-component-gulp-tasks": "^0.7.6",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.6.1",
"sinon": "^3.2.0",
"webpack": "^1.12.9"
}
}