-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.46 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-promise-middleware-actions",
"version": "3.1.0",
"description": "Redux action creator for making async actions with redux-promise-middleware",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint . --ext .js,.ts,.tsx",
"prepublishOnly": "tsc",
"pretest": "npm run lint",
"test": "nyc mocha",
"version": "npm run changelog && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omichelsen/redux-promise-middleware-actions.git"
},
"keywords": [
"redux",
"actions",
"promise",
"async"
],
"author": "Ole Michelsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/omichelsen/redux-promise-middleware-actions/issues"
},
"homepage": "https://github.com/omichelsen/redux-promise-middleware-actions#readme",
"dependencies": {
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"conventional-changelog-cli": "^2.2.2",
"eslint-config-omichelsen": "^1.6.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true,
"instrument": true
}
}