-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
{
"name": "@reperio/hapijs-starter",
"version": "5.2.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "yarn test && yarn lint && yarn clean && webpack --mode=production",
"clean": "rm -rf ./dist",
"lint": "tslint --project tsconfig.json",
"deploy": "yarn build && yarn publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reperio/hapijs-starter.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/reperio/hapijs-starter/issues"
},
"homepage": "https://github.com/reperio/hapijs-starter#readme",
"dependencies": {
"@types/hapi-auth-jwt2": "^8.0.2",
"@types/jest": "^23.3.10",
"catbox-memory": "^4.0.1",
"file-system": "^2.2.2",
"hapi": "^17.8.1",
"hapi-auth-jwt2": "8.1.0",
"hapijs-status-monitor": "github:ziyasal/hapijs-status-monitor",
"hoek": "^5.0.3",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.4.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"jest": "^22.1.4",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.2",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"roots": [
"./test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"mapCoverage": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"testEnvironment": "node"
},
"files": [
"dist/**/*"
]
}