forked from yldio/pouch-websocket-sync-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 2.55 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 2.55 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "pouch-websocket-sync-example",
"version": "0.2.0",
"description": "Redux, PouchDB and Sync TodoMVC example",
"scripts": {
"test": "NODE_ENV=test nyc babel-tape-runner ./**/*.spec.js",
"test-only": "NODE_ENV=test nyc babel-tape-runner",
"start": "concurrently -k -c 'red.dim,green' 'node websocket-server' 'node server'"
},
"repository": {
"type": "git",
"url": "https://github.com/ericgundrum/pouch-websocket-sync-example.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ericgundrum/pouch-websocket-sync-example/issues"
},
"homepage": "https://github.com/ericgundrum/pouch-websocket-sync-example",
"dependencies": {
"classnames": "",
"debug": "",
"pouch-redux-middleware": "",
"pouch-remote-stream": "git+https://github.com/ericgundrum/pouch-remote-stream.git#pouchdb-6-support",
"pouch-websocket-sync": "",
"pouchdb": "",
"prop-types": "",
"react": "",
"react-dom": "",
"react-redux": "",
"redux": ""
},
"devDependencies": {
"babel-cli": "",
"babel-core": "",
"babel-loader": "",
"babel-plugin-istanbul": "",
"babel-plugin-react-transform": "",
"babel-plugin-transform-object-rest-spread": "",
"babel-preset-env": "",
"babel-preset-react": "",
"babel-register": "",
"babel-tape-runner": "",
"concurrently": "",
"express": "",
"node-libs-browser": "",
"nyc": "",
"raw-loader": "",
"react-addons-test-utils": "",
"react-test-renderer": "",
"react-transform-hmr": "",
"skin-deep": "",
"style-loader": "",
"tape": "",
"todomvc-app-css": "",
"webpack": "",
"webpack-dev-middleware": "",
"webpack-hot-middleware": ""
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
[
"react"
],
[
"env",
{
"targets": {
"chrome": 58,
"node": true
}
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"watermarks": {
"lines": [
90,
95
],
"functions": [
90,
95
],
"branches": [
90,
95
],
"statements": [
90,
95
]
},
"reporter": [
"html",
"text-summary"
],
"exclude": [
"**/*.spec.js"
],
"sourceMap": false,
"instrument": false,
"babel-cache": true,
"cache": true,
"temp-directory": "coverage/.nyc_out",
"clean": true
}
}