-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "redux-subscribe-reselect",
"version": "2.0.1",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepublishOnly": "npm run lint && npm test && npm run build",
"pretest": "rimraf coverage .nyc_output && npm run build",
"test": "nyc --reporter=text --reporter=html mocha --opts mocha.opts",
"lint": "eslint src test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prebuild": "rimraf lib && mkdirp lib",
"build": "babel --copy-files src -d lib && tsc"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tswaters/redux-subscribe-reselect.git"
},
"keywords": [
"redux",
"store",
"state",
"subscribe",
"subscriber",
"watch",
"watcher",
"observe",
"observer",
"react",
"reselect",
"selector"
],
"author": "Tyler Waters <[email protected]> (https://github.com/tswaters)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@types/node": "^12.7.3",
"@types/redux": "^3.6.0",
"coveralls": "^3.0.6",
"eslint": "^6.3.0",
"mkdirp": "^0.5.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"redux": "^4.0.4",
"reselect": "^4.0.0",
"rimraf": "^3.0.0",
"sinon": "^7.4.1",
"typescript": "^3.6.2"
}
}