-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 KB
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": "@coxmediagroup/lambda-http-errors",
"version": "1.0.0",
"description": "Throw HTTP errors easily.",
"main": "dist/index.js",
"scripts": {
"build:clean": "rimraf dist",
"build:js": "babel src --out-dir dist --extensions \".ts\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:clean && npm run build:types && npm run build:js",
"lint": "tslint --project tsconfig.json -c tslint.json",
"preflight": "run-p lint test",
"test": "jest --config jest.test.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coxmediagroup/lambda-http-errors-js.git"
},
"keywords": [
"AWS",
"Lambda",
"NodeJS",
"Serverless"
],
"author": "github.com/sframe",
"license": "MIT",
"bugs": {
"url": "https://github.com/coxmediagroup/lambda-http-errors-js/issues"
},
"homepage": "https://github.com/coxmediagroup/lambda-http-errors-js#readme",
"include": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/types": "^7.4.4",
"@types/jest": "^24.0.13",
"jest": "^24.1.0",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"ts-jest": "~24.0.2",
"tslint": "^5.13.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.1",
"typescript-tslint-plugin": "^0.1.2"
}
}