forked from pouchdb-community/pouchdb-wrappers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "pouchdb-wrappers",
"version": "5.0.0",
"description": "Makes wrapping PouchDB functions a lot easier.",
"repository": {
"type": "git",
"url": "git://github.com/pouchdb-community/pouchdb-wrappers.git"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "npm run test:lint && npm run test:deps && npm run test:node && npm run test:browser",
"test:lint": "standard",
"test:deps": "dependency-check --no-unused --no-dev .",
"test:node": "mocha",
"test:browser": "mochify test.js",
"cov": "npm run cov:node && npm run cov:browser && nyc report",
"cov:node": "nyc -s npm run test:node",
"cov:browser": "nyc -s --no-clean --instrument false mochify --transform [ babelify --ignore [ test ] --plugins [ babel-plugin-istanbul ] ] test.js",
"coveralls": "npm run cov && nyc report --reporter=text-lcov > lcov.info"
},
"keywords": [
"couchdb",
"pouchdb",
"plug-in",
"plugin",
"wrap",
"wrapper",
"wrappers"
],
"license": "Apache-2.0",
"author": "Marten de Vries",
"devDependencies": {
"babel-plugin-istanbul": "^6.0.0",
"babelify": "^10.0.0",
"dependency-check": "^4.1.0",
"mocha": "^9.0.2",
"mochify": "^8.1.0",
"nyc": "^15.1.0",
"pouchdb": "^7.2.2",
"standard": "^16.0.3"
}
}