-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 1.67 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
{
"name": "pouchdb-upsert",
"version": "2.2.0",
"description": "PouchDB upsert and putIfNotExists functions",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/pouchdb-upsert.git"
},
"keywords": [
"pouch",
"pouchdb",
"upsert",
"putIfNotExists",
"couch",
"couchdb"
],
"author": "Nolan Lawson <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/pouchdb-upsert/issues"
},
"scripts": {
"test-node": "TEST_DB=testdb,http://localhost:5984/testdb istanbul test ./node_modules/mocha/bin/_mocha test/test.js",
"test-local": "zuul --ui mocha-bdd --no-coverage --local 9000 test/test.js",
"jshint": "jshint -c .jshintrc *.js test/test.js",
"test": "npm run jshint && ./bin/run-test.sh",
"test-browser": "zuul --no-coverage --phantom --ui mocha-bdd test/test.js",
"build": "mkdir -p dist && browserify index.js -t es3ify -s PouchUpsert -o dist/pouchdb.upsert.js && npm run min",
"min": "uglifyjs dist/pouchdb.upsert.js -mc > dist/pouchdb.upsert.min.js",
"coverage": "npm test --coverage && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"dependencies": {
"pouchdb-promise": "^6.4.3"
},
"devDependencies": {
"bluebird": "^3.4.7",
"browserify": "^14.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"es3ify": "^0.2.2",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.7",
"pouchdb-memory": "^6.0.0",
"uglify-js": "^2.4.13",
"watchify": "^3.9.0",
"zuul": "^3.10.1"
},
"files": [
"dist"
]
}