forked from ioof-holdings/redux-dynostore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.93 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": "@redux-dynostore/react-redux",
"version": "1.0.0",
"description": "Call dynostore enhancers when a React component is mounted",
"author": "Michael Peyper",
"contributors": [
"Jonathan Peyper"
],
"license": "BSD-3-Clause",
"main": "lib/index.js",
"module": "es/index.js",
"sideEffects": false,
"files": [
"lib",
"es",
"src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ioof-holdings/redux-dynostore.git"
},
"dependencies": {
"@redux-dynostore/core": "^1.0.0",
"hoist-non-react-statics": "^2.5.0",
"prop-types": "^15.6.1",
"recompose": "^0.26.0"
},
"peerDependencies": {
"react": "^15.1.0 || ^16.0.0",
"redux": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-annotate-pure-calls": "^0.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3",
"jest-junit": "^3.6.0",
"raf": "^3.4.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3"
},
"scripts": {
"prebuild": "rimraf lib es",
"build": "rollup -c",
"lint": "eslint . --ext .js --ext .jsx",
"lint:fix": "eslint . --ext .js --ext .jsx --fix",
"test": "JEST_JUNIT_OUTPUT=./test-reports/unit-test-output.xml jest --coverage --colors",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test-config/jest-setup.js",
"collectCoverageFrom": [
"**/src/**"
],
"testResultsProcessor": "./node_modules/jest-junit"
}
}