-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.7 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
{
"name": "restify-render-middleware",
"version": "2.0.3",
"description": "Simple render middleware for restify.",
"author": "Carvalho, Vinicius Luiz <[email protected]>",
"license": "MIT",
"main": "dist/restify-render-middleware.cjs.js",
"types": "types/index.d.ts",
"module": "dist/restify-render-middleware.es.js",
"scripts": {
"build": "bili src/index.ts",
"test": "ts-node jest.startup.ts --detectOpenHandles --forceExit --no-cache",
"pretest": "npm run build",
"prepublishOnly": "npm run test"
},
"files": [
"dist/",
"types/"
],
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/carvalhoviniciusluiz/restify-render-middleware.git"
},
"bugs": {
"url": "https://github.com/carvalhoviniciusluiz/restify-render-middleware/issues"
},
"homepage": "https://github.com/carvalhoviniciusluiz/restify-render-middleware#readme",
"devDependencies": {
"@types/consolidate": "0.0.34",
"@types/jest": "^23.3.14",
"@types/pug": "^2.0.4",
"@types/restify": "^7.2.12",
"bili": "^3.4.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"rollup-plugin-typescript2": "^0.17.2",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.5.3"
},
"dependencies": {
"consolidate": "^0.15.1",
"pug": "^2.0.4",
"restify": "^7.7.0"
},
"keywords": [
"restify",
"engine",
"template",
"view"
]
}