forked from xuoe/redux-observers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "@someonewithpc/redux-observers",
"description": "Observe Redux state changes and dispatch actions on change",
"version": "2.2.0",
"author": "Alex Diaconu <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"types": "types",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"lint": "eslint src test",
"lint:ts": "dtslint --localTs node_modules/typescript/lib types",
"test": "tape -r @babel/register test",
"check": "npm run lint && npm run lint:ts && npm run test",
"coverage": "nyc npm test",
"coverage:lcov": "nyc --reporter text-lcov npm test",
"coveralls": "npm run coverage:lcov | coveralls",
"prepublishOnly": "npm run clean && npm run check && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"coveralls": "^3.1.1",
"dtslint": "^4.2.1",
"eslint": "^8.45.0",
"nyc": "^15.1.0",
"redux-3.4": "npm:[email protected]",
"redux-3.7": "npm:[email protected]",
"redux-4": "npm:redux@^4",
"rimraf": "^5.0.1",
"sinon": "^15.2.0",
"tape": "^5.6.6",
"typescript": "^5.1.6"
},
"nyc": {
"temp-dir": "./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/someonewithpc/redux-observers.git"
},
"engines": {
"npm": ">6.9"
},
"keywords": [
"redux",
"observer"
]
}