-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "redux-retro",
"version": "1.1.2",
"description": "A Redux add-on that brings back the clean, minimal-boilerplate syntax you enjoyed with classic Flux libraries like Alt, Reflux, and Flummox, along with better TypeScript support",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"test": "jest --colors --silent",
"build": "rm -rf dist & tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencompton/redux-retro.git"
},
"keywords": [
"redux",
"alt",
"reflux",
"flummox",
"typescript"
],
"author": "Ben Compton",
"license": "MIT",
"bugs": {
"url": "https://github.com/bencompton/redux-retro/issues"
},
"homepage": "https://github.com/bencompton/redux-retro#readme",
"devDependencies": {
"@types/jest": "^23.3.5",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3"
},
"dependencies": {
"redux": "^4.0.0"
}
}