-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "hapiour-decorators",
"version": "1.4.2",
"description": "Typescript decorators for Hapi",
"repository": {
"type": "git",
"url": "git+https://github.com/Boulangerie/hapiour-decorators"
},
"main": "./build/hapiour",
"typings": "./build/hapiour",
"scripts": {
"lint": "tslint -c tslint.json --type-check --project tsconfig.json lib/**/*.ts",
"test": "mocha -t 5000 -r ts-node/register ./integration-tests/tests/*.suite.ts",
"build": "rm -Rf ./build && tsc",
"prepublish": "npm run build",
"bump": "npm version patch && git push --tags origin master",
"bump:minor": "npm version minor && git push --tags origin master",
"bump:major": "npm version major && git push --tags origin master"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"author": "alexandre.moatty@gmail.com",
"license": "MIT",
"dependencies": {
"@types/hapi": "^16.1.6",
"@types/reflect-metadata": "0.0.5",
"hapi": "^16.4.3",
"lodash": "^4.17.3",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/bluebird": "^3.0.36",
"@types/chai": "^4.0.1",
"@types/lodash": "^4.14.55",
"@types/mocha": "^2.2.35",
"@types/request": "^2.0.0",
"@types/winston": "^2.2.0",
"bluebird": "^3.4.7",
"chai": "^4.0.2",
"hapi-alive": "^1.4.0",
"mocha": "^3.2.0",
"request": "^2.79.0",
"ts-node": "^3.1.0",
"tslint": "^5.5.0",
"tslint-presets": "^2.0.0",
"typedi": "^0.5.2",
"typescript": "^2.4.1",
"winston": "^2.3.0"
}
}