-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
111 lines (111 loc) Β· 3.11 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "rest-hapi",
"version": "3.2.0",
"description": "A RESTful API generator for hapi",
"main": "rest-hapi.js",
"bin": {
"rest-hapi-cli": "./rest-hapi-cli.js"
},
"engines": {
"node": ">=16.13.2",
"npm": ">=8.1.2"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run cover",
"posttest": "npm run report-coverage",
"cover": "npm run cover:unit && npm run cover:e2e",
"cover:unit": "nyc --reporter=lcov --silent npm run test-unit",
"cover:e2e": "nyc --reporter=lcov --silent --clean=false npm run test-e2e",
"test-all": "tape ./tests/unit/*.tests.js && tape ./tests/e2e/*.tests.js",
"test-unit": "tape ./tests/unit/*.tests.js",
"test-e2e": "tape ./tests/e2e/*.tests.js",
"test-joi": "tape ./tests/unit/joi-mongoose-helper.tests.js",
"test-rest-helper": "tape ./tests/unit/rest-helper-factory.tests.js",
"report-coverage": "nyc report --reporter=html --reporter=text-lcov > coverage.lcov && codecov",
"patch-release-git": "git add . && git commit -a -m 'patch release' && git push && npm version patch && npm publish",
"patch-release": "npm version patch && npm publish",
"lint": "eslint --fix **/*.js ./"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JKHeadley/rest-hapi.git"
},
"keywords": [
"hapi",
"API",
"RESTful",
"mongoose",
"generator"
],
"author": {
"name": "Justin Headley",
"email": "headley.justin@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JKHeadley/rest-hapi/issues/new",
"email": "headley.justin@gmail.com"
},
"homepage": "https://github.com/JKHeadley/rest-hapi#readme",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^20.2.2",
"@hapi/hoek": "^9.0.4",
"@hapi/inert": "^6.0.1",
"@hapi/vision": "^6.0.0",
"blue-tape": "^1.0.0",
"chalk": "^4.0.0",
"extend": "^3.0.2",
"fs-extra": "^8.1.0",
"hapi-swagger": "^14.5.5",
"joi": "^17.6.0",
"lodash": "~4.17.15",
"loggin": "^3.0.2",
"mongoose": "^6.4.6",
"mrhorse": "^6.0.0",
"prettier-config-standard": "^1.0.1",
"query-string": "^6.8.3",
"require-all": "^3.0.0",
"tape": "latest"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"clear-require": "^3.0.0",
"codecov": "^3.7.0",
"decache": "4.5.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"mkdirp": "^1.0.3",
"mongodb-memory-server": "^6.4.1",
"nyc": "^15.0.0",
"prettier": "1.18.2",
"proxyquire": "^2.1.3",
"q": "^1.5.1",
"rewire": "^6.0.0",
"sinon": "^7.0.0",
"sinon-test": "^2.3.0"
},
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
}
}