-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 851 Bytes
/
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
{
"name": "rendertron-middleware",
"version": "0.1.5",
"description": "Express middleware for the rendertron service.",
"engines": {
"node": ">=6"
},
"main": "build/middleware.js",
"types": "build/middleware.d.ts",
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"lint": "tslint --project . --format stylish",
"format": "find src -name '*.ts' | xargs clang-format --style=file -i",
"test": "npm run build && ava 'build/**/*-test.js'"
},
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^4.16.0",
"request": "^2.87.0"
},
"devDependencies": {
"@types/request": "^2.47.1",
"@types/supertest": "^2.0.5",
"ava": "^0.25.0",
"clang-format": "^1.2.4",
"express": "^4.16.3",
"supertest": "^3.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}