-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.31 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
{
"name": "redux-observable-sans",
"version": "1.1.2",
"description": "Use redux without any boilerplate",
"module": "lib/esm/index.js",
"main": "lib/cjs/index.js",
"sideEffects": false,
"scripts": {
"lint": "eslint src && eslint test",
"build": "npm run build:esm && npm run build:cjs && npm run build:umd && npm run build:umd:min",
"build:esm": "gulp build:esm",
"build:cjs": "babel src -d lib/cjs",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js -o dist/redux-observable.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js -o dist/redux-observable.min.js",
"build:tests": "rimraf temp && babel test -d temp",
"clean": "rimraf lib temp dist",
"check": "npm run lint && npm run test",
"test": "jest",
"shipit": "npm run clean && npm run build && npm run lint && npm test && scripts/publish.sh"
},
"files": [
"dist",
"lib",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Jan-Jan/redux-observable-sans-boilerplate.git"
},
"keywords": [
"redux-observable",
"Rx",
"Ducks",
"Reducks",
"Redux",
"middleware",
"observable",
"thunk",
"async",
"cancel",
"action"
],
"license": "MIT",
"author": "Dr Jan-Jan van der Vyver",
"dependencies": {
"change-case": "^3.0.2",
"whatwg-fetch": "^2.0.4"
},
"peerDependencies": {
"redux-observable": ">=1.0.0 <2",
"rxjs": ">=6.0.0-beta.0 <7"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.26.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.11.6",
"conventional-changelog-cli": "1.3.3",
"cross-env": "^5.0.0",
"eslint": "^5.3.0",
"eslint-plugin-jest": "^21.18.0",
"fetch-mock": "^6.5.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"jest": "^23.4.2",
"json-server": "^0.10.0",
"redux-observable": "^1.0.0",
"rimraf": "^2.5.4",
"rxjs": "^6.2.2",
"standard": "^11.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.13",
"webpack-rxjs-externals": "~2.0.0"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}