-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "hapi-rethinkdb-init",
"author": "g-div",
"version": "0.1.0",
"description": "A micro plugin that use rethinkdb-init to create databases, tables and indexes when your hapi server starts.",
"dependencies": {
"joi": "^12.0.0",
"rethinkdb": "^2.2.0",
"rethinkdb-init": "0.2.2"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"code": "^4.0.0",
"hapi": "^16.1.0",
"hapi-rethinkdb": "^2.0.1",
"lab": "^14.2.2",
"node-readme": "^0.1.9",
"rethinkdb": "^2.2.0"
},
"peerDependencies": {
"hapi-rethinkdb": "^2.0.1",
"hapi": ">= 8.x.x"
},
"main": "dist/index.js",
"scripts": {
"pretest": "npm run compile",
"test": "lab --transform test/transformer.js --ignore __core-js_shared__",
"precoverage": "npm run compile",
"coverage": "lab --transform test/transformer.js -r html -o coverage.html",
"compile": "babel -s -d dist/ src/",
"postcompile": "npm run readme",
"prepublish": "npm run compile",
"readme": "node-readme",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"repository": {
"type": "git",
"url": "git@github.com:g-div/hapi-rethinkdb-init.git"
},
"keywords": [
"hapi"
],
"license": "MIT"
}