-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "redux-xhr-middleware",
"version": "0.7.3",
"devDependencies": {
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"case-sensitive-paths-webpack-plugin": "^1.1.4",
"dotenv": "^4.0.0",
"eslint": "^3.12.0",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-promise": "^3.3.2",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"jest": "^18.0.0",
"object-assign": "^4.1.0",
"promise": "^7.1.1",
"rimraf": "^2.5.4",
"webpack": "^1.14.0",
"yarn": "^0.18.1"
},
"dependencies": {
"lodash.merge": "^4.6.0",
"normalizr": "^3.1.0"
},
"scripts": {
"clean": "rimraf dist",
"prepublish": "yarn run clean && yarn run test && yarn run build",
"posttest": "yarn run lint",
"lint": "eslint src",
"test": "node scripts/test.js --env=jsdom",
"build": "webpack"
},
"main": "dist",
"jest": {
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"testPathIgnorePatterns": [
"./(build|docs|node_modules)/"
],
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js|jsx)$"
},
"repository": {
"type": "git",
"url": "https://github.com/celikmus/redux-xhr-middleware"
},
"author": "Mustafa Celik <[email protected]>",
"license": "MIT"
}