-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.89 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
{
"name": "redux-preload",
"version": "0.0.2",
"private": false,
"description": "Preload actions on both server & client side (allows deep nesting of components)",
"license": "MIT",
"keywords": [
"preload",
"prefetch"
],
"author": "Blueberry Apps",
"typings": "index",
"main": "lib/index.js",
"engines": {
"node": ">=6.9",
"npm": ">=3.10"
},
"scripts": {
"build": "npm run build:clean && npm run build:lib",
"build:lib": "BABEL_ENV=build babel src --out-dir lib",
"build:clean": "rimraf lib",
"prepublish": "npm run eslint && npm run test && npm run build",
"eslint": "eslint ./src",
"eslint:fix": "npm run eslint -- --fix",
"jest": " jest",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/blueberryapps/redux-preload.git"
},
"bugs": {
"url": "/~https://github.com/blueberryapps/redux-preload/issues"
},
"homepage": "/~https://github.com/blueberryapps/redux-preload/tree/master#readme",
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/utils/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/utils/__mocks__/styleMock.js"
},
"collectCoverageFrom": [
"src/**/*.js"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"babel-template": "^6.24.1",
"bluebird": "^3.5.0",
"enzyme": "^2.8.1",
"enzyme-to-json": "^1.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-module-utils": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.1.1",
"jest": "^19.0.2",
"jsdom": "9.4.1",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-test-renderer": "^15.5.4",
"redux": "^3.7.2",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"babel-polyfill": ">=6",
"bluebird": ">=3",
"react": ">=14.0.0 || >=0.13.0",
"react-dom": ">=14.0.0 || >=0.13.0"
},
"dependencies": {
"lodash.isarray": ">=4"
}
}