forked from DeprecatedCode/redux-fractions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 958 Bytes
/
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
{
"name": "redux-fractions",
"version": "2.1.0",
"description": "FastReduxACTIONS combines Flux Standard Action creators and reducers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:NateFerrero/redux-fractions.git",
"author": "Nate Ferrero <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts",
"src/flux.ts",
"src/index.ts"
],
"scripts": {
"build": "tsc --declaration",
"lint": "tslint -c tslint.json -p ./ ./src/*.ts",
"lint-watch": "nodemon -e ts -w ./ -x npm run lint"
},
"devDependencies": {
"@types/react": "^16",
"@types/react-redux": "^5",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"tslint": "^5.9.1",
"typescript": "^3"
},
"peerDependencies": {
"react": "^16",
"react-redux": "^5"
}
}