-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "@cubedelement.com/civil-web",
"version": "2.0.0",
"description": "Sometimes you have to fight your own wars on the web! Anyway, bad movie reference.... This is a small library for http web error and statuses.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx --config .eslintrc.json",
"eslint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --config .eslintrc.json --fix",
"test": "jest",
"test:cov": "jest --coverage",
"pretest": "rimraf ./.jestcache",
"build:all": "tsc",
"prebuild:all": "npm run clean",
"build:pack": "tsc --project ./tsconfig.pack.json",
"prebuild:pack": "npm run clean",
"pack:test": "npm pack --dry-run",
"ci:build:pack:test": "npm run ci:build:pack:flow && npm run pack:test",
"ci:build:pack": "npm run ci:build:pack:flow && npm pack",
"ci:build:pack:flow": "npm run build:pack && npm run eslint && npm run test:cov"
},
"keywords": [
"typescript",
"civil",
"civil-web",
"civilized",
"civilized-web",
"es2020",
"http",
"http-status-codes",
"httpStatusCodes",
"status-codes",
"statusCodes",
"wallaby",
"web",
"web-errors",
"web-exceptions"
],
"author": "Kelly Vernon",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"del": "^7.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"run-sequence": "^2.2.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"uuid": "^9.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/kvernon/civil-web.git"
}
}