-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 904 Bytes
/
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
{
"name": "restyped-hapi",
"version": "0.0.1",
"description": "Restyped Hapi",
"author": "Jean-Baptiste Pionnier",
"homepage": "https://github.com/jbpionnier/restyped-hapi#readme",
"license": "MIT",
"repository": "jbpionnier/restyped-hapi",
"keywords": [
"hapi",
"restyped",
"typescript"
],
"engines": {
"node": ">=6.x.x"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write --no-semi --single-quote --print-width 130 --trailing-comma all --parser typescript src/**/*.ts *.ts",
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"@types/hapi": "^17.0.0",
"restyped": "1.1.0"
},
"peerDependencies": {
"hapi": "^17.0.0"
},
"devDependencies": {
"typescript": "^2.6.2"
}
}