-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "@ichainml/hapi-decorators",
"version": "1.0.5",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/iChainML/hapi-decorators.git"
},
"author": "Hongbo LU <gitawego@gmail.com>",
"license": "MIT",
"scripts": {
"watch": "tsc --watch",
"build": "npm run clean && tsc",
"build:prod": "npm run clean && tsc -p tsconfig.prod.json",
"clean": "rm -rf ./dist && rm -rf ./build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"typings": "index.d.ts",
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.5"
},
"peerDependencies": {
"boom": "^7.2.0",
"hapi": "^17.3.1"
},
"devDependencies": {
"@types/boom": "^7.2.0",
"@types/debug": "^0.0.30",
"@types/hapi": "^17.0.9",
"@types/joi": "^13.0.7",
"@types/lodash": "^4.14.106",
"boom": "^7.2.0",
"conventional-changelog-cli": "^1.3.21",
"hapi": "^17.3.1",
"joi": "^13.1.2",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"description": "```ts\r import {\r Controller,\r Get,\r Post,\r ServerSettings,\r ServerLoader\r } from 'hapi-decorators';\r import { Request, ResponseToolkit, routeSettings } from 'hapi';\r import * as inert from 'inert';",
"bugs": {
"url": "https://github.com/iChainML/hapi-decorators/issues"
},
"homepage": "https://github.com/iChainML/hapi-decorators#readme",
"directories": {
"test": "test"
}
}