-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "redux-cursor",
"version": "4.0.1",
"description": "Recursive modularization for redux reducers and actions",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --declaration --outDir dist",
"ci": "npm run coverage && codecov",
"coverage": "npm run build && nyc --reporter=lcov ava dist/test",
"start-compiling": "tsc --watch --declaration --outDir dist",
"test": "npm run build && npm run tsc && ava -v dist/test",
"tsc": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Dashlane/redux-cursor.git"
},
"keywords": [
"redux",
"cursor"
],
"author": "Denis Sokolov <denis@sokolov.cc>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Dashlane/redux-cursor/issues"
},
"homepage": "https://github.com/Dashlane/redux-cursor#readme",
"devDependencies": {
"@types/es6-promise": "0.0.32",
"@types/object-assign": "^4.0.30",
"ava": "^0.16.0",
"codecov": "^1.0.1",
"nyc": "^8.1.0",
"redux": "^3.6.0",
"typescript": "~2.2.1"
},
"dependencies": {
"object-assign": "^4.0.1"
}
}