-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "@hoodie/account-server-api",
"version": "0.0.0-development",
"description": "Account JavaScript API backed by PouchDB",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "standard",
"test": "nyc tap 'test/{unit,integration}/**/*-test.js'",
"semantic-release": "semantic-release"
},
"nyc": {
"//": "since we override the default excludes, we have to also (re)exclude the test directory and node_modules",
"exclude": [
"node_modules",
"test",
"lib/db"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-account-server-api.git"
},
"keywords": [
"hoodie",
"couchdb",
"account",
"api"
],
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-account-server-api/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-account-server-api#readme",
"devDependencies": {
"base64url": "^2.0.0",
"coveralls": "^3.0.0",
"nyc": "^11.0.0",
"semantic-release": "^12.2.2",
"simple-mock": "^0.8.0",
"standard": "^11.0.0",
"tap": "^11.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"couchdb-calculate-session-id": "^1.1.1",
"lodash": "^4.16.4",
"pouchdb-adapter-memory": "^6.0.7",
"pouchdb-core": "^6.0.7",
"pouchdb-errors": "6.4.0",
"pouchdb-mapreduce": "^6.0.7",
"pouchdb-users": "^1.0.3",
"uuid": "^3.0.0"
}
}