-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "@pdc/http-status-codes",
"version": "1.0.1",
"description": "An organized collection of meaningfully named HTTP status code constants",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run build:cleanup && npm run build:node",
"build:cleanup": "rimraf dist",
"build:node": "tsup",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc",
"lint:eslint": "eslint ./src --max-warnings=0",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier . --check",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint ./src --fix || true",
"format:prettier": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilanthropyDataCommons/http-status-codes.git"
},
"files": [
"dist"
],
"author": "",
"license": "AGPL-3.0",
"devDependencies": {
"eslint": "^9.30.1",
"eslint-config-love": "^121.0.0",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}