-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"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"
},
"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": "^3.0.0",
"gaze-cli": "^0.2.0",
"hapi": "^16.0.0",
"lolex": "^2.0.0",
"memdown": "^1.1.2",
"nock": "^9.0.0",
"nodemailer-stub-transport": "^1.0.0",
"nyc": "^11.0.0",
"pouchdb-adapter-http": "^6.0.7",
"pouchdb-core": "^6.0.7",
"pouchdb-mapreduce": "^6.0.7",
"semantic-release": "^12.2.2",
"standard": "^11.0.0",
"tap": "^11.0.1"
},
"dependencies": {
"@gar/hapi-json-api": "2.0.3",
"@hoodie/account-server-api": "^3.8.2",
"base64url": "^2.0.0",
"boom": "^5.0.0",
"couchdb-calculate-session-id": "^1.1.0",
"joi": "^10.0.0",
"lodash": "^4.0.1",
"nodemailer": "^2.0.0",
"pouchdb-admins": "^1.0.2",
"pouchdb-errors": "6.4.1",
"randomstring": "^1.1.3",
"uuid": "^3.0.0"
},
"publishConfig": {
"access": "public"
},
"greenkeeper": {
"ignore": [
"nodemailer"
]
}
}