-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "node-teapot",
"version": "3.1.1",
"description": "Utilities for working with HTTP status codes, errors, and more",
"author": {
"name": "Ty-Lucas Kelley",
"email": "[email protected]",
"url": "https://greylocklabs.com"
},
"homepage": "https://github.com/greylocklabs/teapot#readme",
"bugs": "https://github.com/greylocklabs/teapot/issues",
"repository": {
"type": "git",
"url": "https://github.com/greylocklabs/teapot"
},
"license": "MIT",
"keywords": [
"http",
"rest",
"api",
"error",
"status",
"koa",
"express"
],
"files": [
"dist"
],
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist node_modules",
"postclean": "yarn install",
"prebuild": "rm -rf dist",
"build": "microbundle --external http --no-compress --target node",
"lint": "yarn lint:eslint && yarn lint:markdownlint",
"lint:eslint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx src",
"lint:markdownlint": "markdownlint README.md CHANGELOG.md .github",
"test": "jest",
"test:coverage": "jest --coverage && cat coverage/lcov.info | coveralls",
"prepublishOnly": "yarn build && yarn test"
},
"engines": {
"node": ">= 8"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@greylocklabs/eslint-config": "3.1.2",
"@types/express": "^4.17.2",
"@types/jest": "^25.1.3",
"@types/koa": "^2.11.1",
"@types/koa-router": "^7.4.0",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@vue/eslint-config-typescript": "^5.0.1",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-vue": "^6.2.1",
"express": "^4.17.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"koa": "^2.11.0",
"koa-router": "^8.0.8",
"markdownlint-cli": "^0.22.0",
"microbundle": "^0.11.0",
"shelljs": "0.8.3",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.2"
}
}