-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@byverdu/http-server",
"version": "1.1.6",
"description": "Exported Express app to speed up other modules/prototypes that require a server",
"type": "module",
"main": "./lib/server.mjs",
"scripts": {
"start": "node server.mjs",
"dev": "nodemon server.mjs",
"test:dev": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --detectOpenHandles",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --collect-coverage --detectOpenHandles --forceExit",
"test:clear:cache": "jest --clearCache",
"lint": "eslint src/**/*.mjs utils/*mjs --fix",
"build": "node utils/minify.mjs",
"zip": "./scripts/zip.sh",
"release:notes": "./scripts/release_notes.sh",
"release": "./scripts/release.sh",
"prepare": "husky install",
"prettify": "prettier ./src/* --write"
},
"keywords": [
"express",
"boilerplate",
"http-server",
"static server"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/byverdu/http-server/issues"
},
"homepage": "https://github.com/byverdu/http-server#readme",
"author": "@byverdu",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"nodemon": "^2.0.19",
"prettier": "^2.8.8",
"supertest": "^6.2.4",
"terser": "^5.15.0"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(mjs?|js?)$",
"transform": {},
"moduleFileExtensions": [
"mjs",
"js"
]
}
}