-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "pouchdb-users",
"description": "PouchDB plugin to simulate CouchDB’s _users database behavior",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "browserify index.js > dist/pouchdb-users.js",
"postbuild": "uglifyjs dist/pouchdb-users.js -mc > dist/pouchdb-users.min.js",
"test": "npm run -s test:node | tap-spec",
"test:node": "node tests",
"test:coverage": "istanbul cover tests",
"test:coverage:upload": "istanbul-coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/pouchdb-users.git"
},
"keywords": [
"couchdb",
"pouchdb",
"plugin",
"users",
"authentication"
],
"author": "The Hoodie Community",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/pouchdb-users/issues"
},
"homepage": "https://github.com/hoodiehq/pouchdb-users#readme",
"dependencies": {
"lie": "^3.1.1",
"pouchdb-bulkdocs-wrapper": "^1.0.2",
"pouchdb-wrappers": "^1.3.6",
"secure-random": "^1.1.1"
},
"devDependencies": {
"browserify": "^14.4.0",
"istanbul": "^0.4.2",
"memdown": "^1.1.2",
"mkdirp": "^0.5.1",
"pouchdb": "^6.0.4",
"rimraf": "^2.5.2",
"semantic-release": "^6.3.6",
"tap-min": "^1.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"uglify-js": "^3.0.15"
}
}