forked from pouchdb/pouchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.1 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "pouchdb",
"version": "2.2.4-prerelease",
"description": "PouchDB is a pocket-sized database.",
"main": "./lib/index.js",
"homepage": "http://pouchdb.com/",
"repository": "https://github.com/pouchdb/pouchdb",
"keywords": [
"db",
"couchdb",
"pouchdb"
],
"tags": [
"db",
"couchdb",
"pouchdb"
],
"dependencies": {
"argsarray": "0.0.1",
"bluebird": "^1.2.4",
"es3ify": "^0.1.3",
"inherits": "~2.0.1",
"level-js": "^2.1.3",
"level-sublevel": "~5.2.0",
"leveldown": "~0.10.2",
"levelup": "~0.18.4",
"lie": "^2.6.0",
"localstorage-down": "^0.4.4",
"memdown": "^0.8.0",
"pouchdb-extend": "^0.1.0",
"pouchdb-mapreduce": "~2.2.4",
"request": "~2.28.0",
"spark-md5": "0.0.5",
"through2": "^0.4.1"
},
"devDependencies": {
"rimraf": "2.2.8",
"pouchdb-server": "^0.5.1",
"commander": "~2.1.0",
"watchify": "~0.8.2",
"uglify-js": "~2.4.6",
"jshint": "~2.3.0",
"pouchdb-http-proxy": "~0.10.3",
"corsproxy": "~0.2.13",
"http-server": "~0.5.5",
"browserify": "~3.24.13",
"wd": "~0.2.8",
"tin": "~0.4.0",
"ncp": "~0.5.0",
"sauce-connect-launcher": "0.2.2",
"less": "~1.7.0",
"tape": "~2.12.2",
"glob": "~3.2.9",
"watch-glob": "~0.1.1",
"mkdirp": "~0.4.2",
"exec-sync": "~0.1.6",
"ua-parser-js": "^0.6.2",
"chai": "^1.9.1",
"mocha": "^1.18.2",
"istanbul": "^0.2.7",
"cordova": "~3.4.1-0.1.0",
"replace": "^0.2.9",
"es5-shim": "^3.1.1",
"phantomjs": "^1.9.7-5"
},
"scripts": {
"build-js": "npm run build-main-js && npm run min && npm run build-plugins",
"build-main-js": "browserify . -s PouchDB > dist/pouchdb.js",
"min": "uglifyjs dist/pouchdb.js -mc > dist/pouchdb.min.js",
"build-plugins": "./bin/build-all-plugins.sh",
"build": "npm run version && mkdirp dist && npm run build-js && npm run license",
"license": "./bin/add-license.js",
"version": "node ./bin/get-version.js",
"test-node": "./bin/test-node.sh",
"test-browser": "mkdirp dist && npm run build-js && node ./bin/test-browser.js",
"cordova": "npm run build && ./bin/run-cordova.sh",
"jshint": "jshint -c .jshintrc bin/ lib/ tests/ tests/performance/",
"dev": "npm run version && node ./bin/dev-server.js",
"test": "npm run version && npm run jshint && ./bin/run-test.sh",
"release": "./bin/release.sh",
"publish-site": "./bin/publish-site.sh",
"build-site": "node ./bin/build-site.js",
"shell": "./bin/repl.js",
"report-coverage": "node ./bin/run-coverage.js",
"build-perf": "browserify tests/performance/*.js > tests/performance-bundle.js"
},
"browser": {
"./deps/buffer": false,
"request": false,
"crypto": false,
"./adapters/leveldb": false,
"./adapters/levelalt": false,
"./lib/deps/ajax.js": "./lib/deps/ajax-browser.js",
"./lib/version.js": "./lib/version-browser.js",
"./lib/adapters/preferredAdapters.js": "./lib/adapters/preferredAdapters-browser.js",
"bluebird": "lie",
"leveldown": "level-js"
},
"browserify": {
"transform": [
"es3ify"
]
}
}