-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "http-status-codes",
"sideEffects": false,
"version": "2.3.0",
"description": "Constants enumerating the HTTP status codes. Based on the Java Apache HttpStatus API.",
"scripts": {
"update-codes": "ts-node --project ./scripts/tsconfig.json ./scripts/update-codes",
"build": "./scripts/build.sh",
"lint": "eslint .",
"test": "jest ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/prettymuchbryce/http-status-codes.git"
},
"files": [
"build/",
"LICENSE",
"README.MD"
],
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"keywords": [
"node",
"http",
"apache",
"HttpStatus",
"httpclient",
"status",
"codes"
],
"author": "Bryce Neal",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.10",
"@types/markdown-table": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"fs-extra": "^9.0.1",
"jest": "^26.4.0",
"markdown-table": "^2.0.0",
"ts-jest": "^26.2.0",
"ts-morph": "^7.3.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
}
}