forked from mirrorjs/mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.69 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
{
"name": "mirrorx",
"version": "0.2.7",
"description": "A React framework with minimal API and zero boilerplate.",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src test",
"build": "rm -rf lib && babel src -d lib --no-comments",
"bundle": "webpack && webpack -p --output-filename mirror.min.js"
},
"main": "./lib/index.js",
"keywords": [
"framework",
"react",
"redux",
"mirror",
"mirrorx",
"react-router",
"front-end"
],
"repository": {
"type": "git",
"url": "[email protected]:mirrorjs/mirror.git"
},
"license": "MIT",
"dependencies": {
"history": "^4.6.1",
"react-redux": "^5.0.0",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.6.0"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.14.1",
"babel-core": "^6.14.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.14.1",
"babel-preset-react": "^6.14.1",
"babel-preset-stage-2": "^6.14.1",
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"jest": "^20.0.4",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"prop-types": "^15.5.10",
"webpack": "^3.4.0"
},
"files": [
"lib/",
"docs/",
"README.md",
"LICENSE"
],
"jest": {
"modulePaths": [
"<rootDir>/src"
],
"testRegex": "(/test/.*\\.spec.js)$",
"testURL": "http://localhost"
}
}