forked from nolanlawson/pouchdb-find
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.25 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-find",
"version": "0.3.5",
"description": "Easy-to-use query language for PouchDB",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/pouchdb-find.git"
},
"keywords": [
"pouch",
"pouchdb",
"plugin",
"find",
"mango",
"query",
"couch",
"couchdb"
],
"author": "",
"license": "Apache",
"bugs": {
"url": "https://github.com/nolanlawson/pouchdb-find/issues"
},
"scripts": {
"write-cloudant-password": "echo 'module.exports = [\"'$CLOUDANT_USERNAME'\", \"'$CLOUDANT_PASSWORD'\", \"'$CLOUDANT_HOST'\"];' > test/.cloudant-password.js",
"test-node": "istanbul test ./node_modules/mocha/bin/_mocha test/test.js",
"test-browser": "./bin/test-browser.js",
"jshint": "jshint -c .jshintrc lib/*.js bin/*.js test/test.js test/test-utils.js test/*suite*/*",
"test": "npm run jshint && ./bin/run-test.sh",
"build": "mkdirp dist && npm run browserify && npm run min",
"browserify": "browserify lib/index.js | ./bin/es3ify.js | derequire > dist/pouchdb.find.js",
"min": "uglifyjs dist/pouchdb.find.js -mc > dist/pouchdb.find.min.js",
"dev": "browserify test/test.js > test/test-bundle.js && npm run dev-server",
"dev-server": "npm run write-cloudant-password && ./bin/dev-server.js",
"coverage": "npm test --coverage && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"dependencies": {
"argsarray": "0.0.1",
"inherits": "~2.0.1",
"lie": "^2.6.0",
"pouchdb-abstract-mapreduce": "^0.2.2",
"pouchdb-collate": "^1.2.0",
"pouchdb-extend": "^0.1.2",
"pouchdb-upsert": "^1.1.0",
"spark-md5": "0.0.5",
"debug": "^2.1.0"
},
"devDependencies": {
"bluebird": "^1.0.7",
"browserify": "^9.0.8",
"chai": "~1.8.1",
"chai-as-promised": "~4.1.0",
"derequire": "^2.0.0",
"es3ify": "^0.1.3",
"http-server": "~0.5.5",
"istanbul": "^0.2.7",
"jshint": "^2.3.0",
"mkdirp": "^0.5.0",
"mocha": "~1.18",
"phantomjs": "^1.9.7-5",
"pouchdb": "pouchdb/pouchdb",
"request": "^2.36.0",
"sauce-connect-launcher": "^0.4.2",
"selenium-standalone": "^3.0.2",
"uglify-js": "^2.4.13",
"watchify": "^3.1.0",
"wd": "^0.2.21"
}
}