forked from borsi/sn-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.42 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sn-redux",
"version": "1.0.0-beta.4",
"description": "A set of redux actions, reducers and redux-ovbservable epics for Sense/Net ECM",
"main": "dist/sn-redux.js",
"scripts": {
"commit": "git-cz",
"gulp": "gulp",
"test": "istanbul cover _mocha -- -R spec dist/test/*Tests.js",
"check-coverage": "istanbul check-coverage ",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/SenseNet/sn-redux.git"
},
"keywords": [
"sensenet",
"ecm",
"redux",
"crud"
],
"author": "Sense/Net <[email protected]> (http://sensenet.com/)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/SenseNet/sn-redux/issues"
},
"homepage": "https://sensenet.com",
"dependencies": {
"@reactivex/rxjs": "5.0.0-rc.4",
"@types/isomorphic-fetch": "0.0.31",
"@types/normalizr": "2.0.17",
"@types/redux": "3.6.31",
"@types/redux-logger": "2.6.32",
"isomorphic-fetch": "2.2.1",
"rxjs": "5.0.0-rc.4",
"normalizr": "2.2.1",
"redux": "3.6.0",
"redux-logger": "2.7.4",
"redux-observable": "0.12.2",
"sn-client-js": "1.0.2-beta.5",
"ts-json-properties": "1.1.1"
},
"devDependencies": {
"@reactivex/rxjs": "5.0.0-rc.4",
"@types/chai": "3.4.34",
"@types/isomorphic-fetch": "0.0.31",
"@types/mocha": "2.2.33",
"@types/nock": "8.2.0",
"@types/orchestrator": "0.0.30",
"@types/redux-mock-store": "0.0.7",
"@types/sinon": "1.16.32",
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"del": "2.2.2",
"gulp": "3.9.1",
"gulp-istanbul": "1.1.1",
"gulp-mocha": "3.0.1",
"gulp-sourcemaps": "1.9.1",
"gulp-tslint": "7.0.1",
"gulp-typedoc": "2.0.1",
"gulp-typescript": "3.1.3",
"isomorphic-fetch": "2.2.1",
"mocha": "3.2.0",
"nock": "9.0.2",
"normalizr": "2.2.1",
"redux": "3.6.0",
"redux-mock-store": "1.2.1",
"redux-observable": "0.12.2",
"remap-istanbul": "0.7.0",
"rxjs": "5.0.0-rc.4",
"semantic-release": "^6.3.2",
"sinon": "1.17.6",
"sn-client-js": "1.0.2-beta.5",
"tslint": "4.0.2",
"typedoc": "0.5.1",
"typescript": "2.0.10"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"typings": "./src/sn-redux.d.ts"
}