forked from pouchdb-community/pouchdb-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "pouchdb-authentication",
"version": "0.4.2",
"description": "PouchDB Authentication",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/pouchdb-authentication.git"
},
"scripts": {
"jshint": "jshint -c .jshintrc lib/*.js test/test.js",
"build-js": "mkdir -p dist && browserify lib/index.js -o dist/pouchdb.authentication.js",
"min": "uglifyjs dist/pouchdb.authentication.js -mc > dist/pouchdb.authentication.min.js",
"build": "npm run build-js && npm run min",
"dev": "npm run jshint && browserify test/test.js > test/test-bundle.js && npm run dev-server",
"dev-server": "./bin/dev-server.js"
},
"keywords": [
"pouch",
"pouchdb",
"authentication",
"couch",
"couchdb"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/pouchdb-authentication/issues"
},
"dependencies": {
"inherits": "~2.0.1",
"lie": "^2.5.3",
"pouchdb": "^4.0.3",
"pouchdb-extend": "^0.1.2"
},
"devDependencies": {
"bluebird": "^1.0.7",
"browserify": "~3.44.1",
"chai": "~1.8.1",
"chai-as-promised": "~4.1.0",
"istanbul": "~0.1.45",
"jshint": "~2.3.0",
"mocha": "^1.18.2",
"watchify": "~0.7.2",
"http-proxy": "~0.10.4",
"corsproxy": "~0.2.14",
"http-server": "~0.5.5",
"uglify-js": "~2.4.13"
}
}