forked from pouchdb/upsert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "pouchdb-upsert",
"version": "2.0.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": "",
"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-browser": "./bin/test-browser.js",
"jshint": "jshint -c .jshintrc *.js test/test.js",
"test": "npm run jshint && ./bin/run-test.sh",
"build": "mkdir -p dist && browserify index.js -o dist/pouchdb.upsert.js && npm run min",
"min": "uglifyjs dist/pouchdb.upsert.js -mc > dist/pouchdb.upsert.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": {
"es3ify": "^0.1.3",
"lie": "^2.6.0"
},
"devDependencies": {
"bluebird": "^1.0.7",
"browserify": "~2.36.0",
"chai": "~1.8.1",
"chai-as-promised": "~4.1.0",
"http-server": "~0.5.5",
"istanbul": "^0.2.7",
"jshint": "~2.3.0",
"mocha": "~1.18",
"phantomjs": "^1.9.7-5",
"pouchdb": "^5.1.0",
"request": "^2.36.0",
"sauce-connect-launcher": "^0.4.2",
"selenium-standalone": "^4.7.0",
"uglify-js": "^2.4.13",
"watchify": "~0.4.1",
"wd": "^0.2.21"
},
"browser": {
"crypto": false
},
"browserify": {
"transform": [
"es3ify"
]
}
}