-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "interchange-router",
"version": "0.0.0-19",
"description": "HTTP router agnostic of server technology",
"keywords": [
"HTTP",
"HTTPS",
"router",
"handler",
"lambda",
"agnostic"
],
"homepage": "https://github.com/ryanstaniforth/interchange-router",
"author": "Ryan Staniforth",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryanstaniforth/interchange-router.git"
},
"main": "build/index.js",
"scripts": {
"clean": "rm -rf node_modules build",
"lint": "tslint 'src/**/*.ts'",
"prettier": "prettier --write \"{*.md,*.json,src/**/*.ts}\"",
"prettier:check": "prettier -l \"{*.md,*.json,src/**/*.ts}\"",
"build": "tsc",
"build:watch": "tsc --watch --preserveWatchOutput",
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage",
"coverage:watch": "jest --coverage --watchAll",
"prepublishOnly": "npm run clean && npm install && npm run build && npm run test && npm run lint && npm run prettier:check"
},
"files": [
"build/**/*"
],
"devDependencies": {
"@types/aws-lambda": "^8.10.71",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"jest": "^26.6.3",
"node-mocks-http": "^1.10.1",
"prettier": "2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
}
}