-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
86 lines (86 loc) · 2.7 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": "socket-pouch",
"version": "2.0.0",
"description": "PouchDB over websockets",
"main": "server/index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/socket-pouch.git"
},
"keywords": [
"pouch",
"pouchdb",
"plugin",
"seed",
"couch",
"couchdb"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/socket-pouch/issues"
},
"scripts": {
"test-node": "bash ./bin/test-node.sh",
"test-browser": "./bin/test-browser.js",
"jshint": "jshint -c .jshintrc lib test/test.js",
"test": "npm run jshint && ./bin/run-test.sh",
"build": "mkdirp dist && npm run browserify && npm run min",
"browserify": "browserify -s socketPouch client | ./bin/es3ify.js | derequire > dist/socket-pouch.client.js",
"min": "uglifyjs dist/socket-pouch.client.js -mc > dist/socket-pouch.client.min.js",
"dev": "browserify test/test.js > test/test-bundle.js && npm run dev-server",
"dev-server": "./bin/dev-server.js",
"coverage": "npm test --coverage && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"dependencies": {
"argsarray": "0.0.1",
"blob-util": "^1.1.1",
"bluebird": "^2.9.24",
"debug": "^2.1.3",
"engine.io": "^1.5.1",
"engine.io-client": "^1.5.1",
"eval": "^0.1.0",
"inherits": "^2.0.1",
"lie": "^2.6.0",
"pouchdb": "^6.0.0",
"pouchdb-binary-util": "^1.0.0",
"pouchdb-promise": "^6.0.7"
},
"devDependencies": {
"browserify": "^9.0.8",
"chai": "3.5.0",
"chai-as-promised": "^5.1.0",
"corsproxy": "^0.2.14",
"derequire": "^2.0.0",
"es3ify": "^0.1.3",
"es5-shim": "^4.1.1",
"http-server": "^0.8.5",
"istanbul": "^0.2.7",
"jshint": "2.8.0",
"mkdirp": "^0.5.0",
"mocha": "^2.3.1",
"phantomjs": "^1.9.7-5",
"pouchdb-http-proxy": "^0.10.4",
"pouchdb-legacy-utils": "^1.0.0",
"request": "^2.36.0",
"sauce-connect-launcher": "^0.11.1",
"selenium-standalone": "^4.7.0",
"uglify-js": "^2.4.13",
"watchify": "^3.1.0",
"wd": "^0.2.21"
},
"browser": {
"./lib/shared/buffer.js": "./lib/shared/buffer-browser.js",
"./lib/shared/cloneBinaryObject.js": "./lib/shared/cloneBinaryObject-browser.js",
"./lib/shared/isBinaryObject.js": "./lib/shared/isBinaryObject-browser.js",
"./lib/client/base64StringToBlobOrBuffer.js": "./lib/client/base64StringToBlobOrBuffer-browser.js",
"./lib/client/binaryStringToBlobOrBuffer.js": "./lib/client/binaryStringToBlobOrBuffer-browser.js",
"./lib/client/readAsBinaryString.js": "./lib/client/readAsBinaryString-browser.js"
},
"files": [
"lib",
"client",
"server",
"dist"
]
}