-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "redux-waiter",
"version": "0.5.0",
"description": "A promise lifecycle manager with redux",
"repository": "https://github.com/hixme/redux-waiter",
"main": "lib/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"files": [
"lib",
"src"
],
"keywords": [
"react",
"redux",
"javascript"
],
"author": {
"name": "Billy Montgomery",
"email": "[email protected]",
"url": "https://github.com/billyxs"
},
"contributors": [
{
"name": "Calvin Cieslak",
"url": "https://github.com/seesleestak"
}
],
"bugs": "https://github.com/hixme/redux-waiter/issues/",
"dependencies": {
"reselect": "*"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-redux": "*",
"redux-thunk": "*"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^4.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.1",
"jest": "^23.6.0",
"jsdom": "^11.2.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"prop-types": "*",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "*",
"react-test-renderer": "^16.2.0",
"redux": "^3.6.0",
"redux-mock-store": "^1.3.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"semver": "^7.1.3"
},
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "cross-env BABEL_ENV=commonjs istanbul cover _mocha -- --compilers js:babel-register --recursive",
"lint": "eslint src __tests__",
"lint:fix": "npm run lint -- --fix",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --source-maps",
"prettier": "prettier --write ./**/*.{js,json,css,md}",
"prepare": "npm run clean && npm run lint && npm run build && npm run test",
"release": "cross-env ./scripts/release.sh"
},
"lint-staged": {
"(src|__tests__)/**/*.{js,jsx}": [
"npm run lint",
"npm run prettier"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"license": "MIT"
}