forked from pouchdb/pouchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
{
"name": "pouchdb",
"version": "0.0.0",
"description": "PouchDB is a pocket-sized database.",
"release": "nightly",
"author": "Dale Harvey",
"main": "./lib/index.js",
"homepage": "https://github.com/daleharvey/pouchdb",
"repository": "https://github.com/daleharvey/pouchdb",
"keywords": [
"db",
"couchdb",
"pouchdb"
],
"tags": [
"db",
"couchdb",
"pouchdb"
],
"dependencies": {
"level": "~0.18.0",
"request": "~2.28.0",
"pouchdb-mapreduce": "0.3.1"
},
"devDependencies": {
"commander": "~2.1.0",
"webdriverjs": "~0.7.14",
"selenium-standalone": "~2.38.0",
"watchify": "~0.4.1",
"uglify-js": "~2.4.6",
"jshint": "~2.3.0",
"http-proxy": "~0.10.3",
"corsproxy": "~0.2.13",
"http-server": "~0.5.5",
"qunit": "~0.5.17",
"tin": "~0.3.1",
"browserify": "~3.14.1"
},
"maintainers": [
{
"name": "Dale Harvey",
"web": "https://github.com/daleharvey"
},
{
"name": "Ryan Ramage",
"web": "https://github.com/ryanramage"
}
],
"scripts": {
"jshint": "./node_modules/.bin/jshint -c .jshintrc lib/*.js lib/adapters/*.js lib/deps/*.js",
"build-js": "mkdir -p dist && ./node_modules/.bin/browserify lib/index.js -s PouchDB -o dist/pouchdb-nightly.js",
"watch-js": "mkdir -p dist && ./node_modules/.bin/watchify lib/index.js -s PouchDB -o dist/pouchdb-nightly.js",
"uglify": "./node_modules/.bin/uglifyjs dist/pouchdb-nightly.js -mc > dist/pouchdb-nightly.min.js",
"build": "npm run build-js && npm run uglify",
"test-node": "./bin/test-node.js",
"test-browser": "npm run build-js && ./bin/test-browser.js",
"dev-server": "npm run watch-js & ./bin/dev-server.js",
"test": "npm run jshint && npm run test-node && npm run test-browser"
},
"browser": {
"./adapters/leveldb": false,
"./deps/buffer": false,
"request": false,
"level": false,
"path": false,
"fs": false,
"events": false,
"crypto": false
}
}