-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "redux-observers",
"description": "Observe Redux state changes and dispatch actions on change",
"version": "3.0.0",
"author": "Alex Diaconu <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npx babel src --out-dir lib",
"clean": "npx rimraf lib coverage",
"lint": "npx eslint src test",
"lint:ts": "npx dtslint --localTs node_modules/typescript/lib types",
"test": "npx tape -r @babel/register test",
"check": "npm run lint && npm run lint:ts && npm run test",
"coverage": "npx nyc npm test",
"coverage:lcov": "npx nyc --reporter lcov npm test",
"prepublish": "npm run clean && npm run check && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@babel/register": "^7.22.15",
"coveralls": "^3.1.1",
"dtslint": "^2.0.6",
"eslint": "^8.53.0",
"nyc": "^14.1.1",
"redux-3.4": "npm:redux@^3.4.2",
"redux-3.7": "npm:redux@^3.7.2",
"redux-4": "npm:redux@^4.2.1",
"rimraf": "^3.0.2",
"sinon": "^7.5.0",
"tape": "^4.17.0",
"typescript": "^3.9.10"
},
"nyc": {
"temp-dir": "./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/xuoe/redux-observers.git"
},
"engines": {
"npm": ">6.9"
},
"keywords": [
"redux",
"observer"
]
}