-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "react-wiz",
"version": "0.0.1",
"description": "A general-purpose react wizard component",
"main": "lib/index.js",
"keywords": [
"react",
"wizard",
"multistep"
],
"author": "Stelios Manousopoulos",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/DAIAD/react-wizard.git"
},
"bugs": {
"url": "https://github.com/DAIAD/react-wizard/issues"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "~6.2.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.24.1",
"chai": "4.1.0",
"chai-enzyme": "0.8.0",
"cheerio": "1.0.0-rc.1",
"enzyme": "2.9.1",
"express": "^4.13.4",
"jsdom": "^11.1.0",
"jsx-loader": "~0.13.2",
"mocha": "^3.4.2",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.1",
"sinon": "^2.4.0",
"sinon-chai": "^2.12.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^15.0.0",
"react-addons-shallow-compare": "^15.3.2"
},
"scripts": {
"build": "babel src --out-dir lib",
"start": "webpack-dev-server --devtool eval-source-map --history-api-fallback",
"test": "mocha --compilers js:babel-core/register"
}
}