-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
111 lines (111 loc) · 2.78 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "mickey",
"version": "2.0.0-alpha.1",
"description": "Lightweight front-end framework for creating React and Redux based app painlessly.",
"main": "./lib/index.js",
"keywords": [
"mickey",
"react",
"redux",
"redux-saga",
"elm",
"framework",
"frontend"
],
"author": {
"name": "bubkoo",
"email": "bubkoo.wy@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bubkoo/mickey.git"
},
"bugs": {
"url": "https://github.com/bubkoo/mickey/issues"
},
"homepage": "https://github.com/bubkoo/mickey#readme",
"peerDependencies": {
"react": "*",
"prop-types": "*",
"react-dom": "*"
},
"dependencies": {
"connected-react-router": "^4.4.1",
"global": "^4.3.2",
"history": "^4.7.2",
"invariant": "^2.2.4",
"is-plain-object": "^2.0.4",
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.isfunction": "^3.0.9",
"minimatch": "^3.0.4",
"object-assign": "^4.1.1",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-devtools-extension": "^2.13.7",
"redux-saga": "^0.16.0",
"warning": "^4.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"jsdom": "^11.2.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rimraf": "^2.6.1",
"sinon": "^4.1.2"
},
"files": [
"lib",
"src",
"*.d.ts"
],
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"html",
"text"
],
"require": [
"babel-register",
"./test/setup.js"
],
"report-dir": "./test/coverage",
"sourceMap": false,
"instrument": false
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha ./test/index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ext .js,.jsx src",
"build": "rimraf lib && babel src --out-dir lib",
"prebuild": "npm run lint",
"prepare": "npm run lint && npm run build && npm run test",
"precommit": "npm run lint"
}
}