This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "redux-actions-promise",
"version": "1.1.5",
"author": "[email protected]",
"description": "FSA-compliant promise middleware for Redux, supports referencing dispatcher/state in action",
"license": "MIT",
"main": "dist/index.js",
"typings": "types/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dwqs/redux-actions-promise"
},
"bugs": {
"url": "https://github.com/dwqs/redux-actions-promise/issues"
},
"files": [
"dist",
"types",
"typings",
"README.md",
"package.json"
],
"keywords": [
"redux",
"middleware",
"redux-middleware",
"promise",
"fsa",
"fsa-action"
],
"scripts": {
"test": "./node_modules/.bin/ava ./test/index.js",
"clean": "rm -rf dist typings types",
"prepush": "npm run lint",
"prebuild": "npm run prepush && npx tsc -p ./tsconfig.json",
"build": "npx rollup -c && npx rollup -c rollup.build.config.js",
"postbuild": "mkdir types && mv typings/index.d.ts types/ && rm -rf typings",
"lint": "npx tslint -p ./tsconfig.json --type-check src/**/*.ts",
"fix": "npx tslint -p ./tsconfig.json --type-check --fix src/**/*.ts"
},
"devDependencies": {
"@types/redux": "^3.6.0",
"ava": "^0.21.0",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"debug": "^2.6.8",
"husky": "^0.14.2",
"redux-actions": "^2.2.1",
"redux-mock-store": "^1.2.3",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^2.0.1",
"tslint": "^5.4.3",
"typescript": "^2.4.1",
"uglify-es": "^3.0.26"
},
"dependencies": {},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.2.0"
}
}