-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.5 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
{
"name": "@myrotvorets/express-acceptsjson-middleware",
"version": "2.0.3",
"description": "Middleware to check whether the client is willing to accept JSON response",
"type": "module",
"exports": "./dist/src/index.mjs",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"test": "node --import=./loader.mjs test-runner.mts",
"test:coverage": "c8 npm test",
"prepack": "npm run build"
},
"files": [
"dist/src/index.d.mts",
"dist/src/index.mjs",
"dist/src/index.mjs.map"
],
"typings": "./dist/src/index.d.mts",
"keywords": [],
"author": "Myrotvorets <[email protected]> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@types/express": "^5.0.0",
"@types/supertest": "^6.0.2",
"c8": "^10.0.0",
"eslint-formatter-gha": "^1.4.3",
"express": "^4.21.2",
"node-reporter-gha": "^2.0.4",
"node-reporter-sonarqube": "^1.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/express-acceptsjson-middleware.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/express-acceptsjson-middleware/issues"
},
"homepage": "https://github.com/myrotvorets/express-acceptsjson-middleware#readme",
"publishConfig": {
"access": "public",
"provenance": true
}
}