forked from hoodiehq/hoodie-account-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.12 KB
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
65
66
67
68
69
70
71
72
{
"name": "@hoodie/account-server",
"version": "0.0.0-semantically-released",
"description": "Account JSON API backed by PouchDB",
"main": "plugin/index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "bin/server",
"pretest": "standard",
"test": "nyc tap 'tests/{unit,integration}/**/*-test.js'",
"test:watch": "gaze 'bin/watch-and-test.sh $path' 'tests/**/*.js' '*.js' 'api/**/*.js' 'plugin/**/*.js' 'routes/**/*.js' 'utils/**/*.js'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"postpublish": "greenkeeper-postpublish"
},
"nyc": {
"//": "since we override the default excludes, we have to also (re)exclude the tests directory and node_modules",
"exclude": [
"node_modules",
"tests",
"plugin/couchdb/users-design-doc.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-account-server.git"
},
"keywords": [
"hapi",
"plugin",
"couchdb",
"account",
"hoodie"
],
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-account-server/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-account-server#readme",
"devDependencies": {
"coveralls": "^2.11.6",
"gaze-cli": "^0.2.0",
"greenkeeper-postpublish": "^1.0.0",
"hapi": "^15.0.1",
"lolex": "^1.4.0",
"memdown": "^1.1.2",
"nock": "^8.0.0",
"nodemailer-stub-transport": "^1.0.0",
"nyc": "^8.1.0",
"pouchdb": "^6.0.5",
"semantic-release": "^6.1.0",
"standard": "^8.0.0",
"tap": "^7.0.0"
},
"dependencies": {
"@gar/hapi-json-api": "^2.0.1",
"@hoodie/account-server-api": "^2.0.0",
"base64url": "^2.0.0",
"boom": "^4.0.0",
"couchdb-calculate-session-id": "^1.1.0",
"joi": "^9.0.0",
"lodash": "^4.0.1",
"nodemailer": "^2.0.0",
"pouchdb-admins": "^1.0.2",
"pouchdb-errors": "^6.0.4",
"randomstring": "^1.1.3",
"uuid": "^2.0.3"
},
"publishConfig": {
"access": "public"
}
}