-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.32 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": "hapi-openapi3",
"version": "1.0.9",
"description": "Generates OpenAPI 3 for Hapi",
"files": [
"dist/"
],
"types": "dist/bundle.d.ts",
"main": "dist/bundle.js",
"author": "Louie Navarro",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/lueenavarro/hapi-openapi3.git"
},
"scripts": {
"prepare": "npm run build",
"build": "webpack --mode production",
"build:watch": "webpack --mode development --watch --devtool eval-source-map",
"test": "ts-mocha src/**/*.spec.ts",
"test:watch": "npm run test -- --watch",
"coverage": "nyc --reporter=lcov npm run test"
},
"dependencies": {
"joi": "^17.4.0",
"statuses": "^2.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/expect": "^24.3.0",
"@types/hapi": "^18.0.5",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.3",
"@types/sinon": "^10.0.2",
"@types/statuses": "^2.0.0",
"chai": "^4.3.4",
"dts-bundle-webpack": "^1.0.2",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"ts-loader": "^9.2.3",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.5",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"nyc": {
"include": "src",
"exclude": "src/**/*.spec.ts"
}
}