-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.76 KB
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
{
"name": "redux-controllers",
"version": "0.0.40",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"watch": "tsc-watch",
"pretest": "npm run build",
"test": "mocha --timeout 900000",
"watch-test": "mocha-typescript-watch",
"prepare": "npm run build",
"bump-version": "npm version patch -m 'Version %s - *'",
"fix-types": "bash ./fix-types.sh",
"build-local-repo": "npm run build && sh ./build-local-repo.sh",
"update-local-repo": "npm run build && cp -rf dist local-repo"
},
"author": "Ragularuban",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Ragularuban/redux-controller.git"
},
"keywords": [],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"@types/react": "^16.4.18",
"@types/react-native": "0.52.17",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"node-localstorage": "^1.3.1",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tsc-watch": "^1.0.30",
"typescript": "^3.1.6",
"rxjs": "^6.3.3"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"auto-bind": "^1.2.1",
"change-case": "^3.0.2",
"immer": "^1.8.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"object-path": "^0.11.4",
"object-path-immutable": "^3.0.0",
"react": "^16.6.3",
"redux": "^4.0.1",
"redux-storage": "^4.1.2",
"redux-storage-decorator-debounce": "^1.1.3",
"redux-storage-decorator-filter": "^1.1.8",
"redux-storage-engine-reactnativeasyncstorage": "^1.0.5",
"twix": "^1.2.1"
},
"peerDependencies": {
"rxjs": "^6.3.3"
}
}