-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "redux-fractions",
"version": "3.0.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/index.ts"
],
"scripts": {
"prepare": "rm -rf ./dist && npm run build",
"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-dom": "^16.0.7",
"@types/react-redux": "^5",
"@types/redux": "^3.6.0",
"react": "^16.4.2",
"react-dom": "^16.5.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"tslint": "^5.9.1",
"typescript": "^3"
},
"peerDependencies": {
"react-redux": "^5"
}
}