-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.47 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.47 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
{
"name": "@inpassor/node-server",
"version": "0.2.0",
"license": "MIT",
"author": "Oleg V. Kuzmin <inpassor@yandex.com>",
"description": "Simple node.js HTTP / HTTPS server",
"repository": {
"type": "git",
"url": "https://github.com/Inpassor/ts-node-server"
},
"bugs": {
"url": "https://github.com/Inpassor/ts-node-server/issues"
},
"homepage": "https://github.com/Inpassor/ts-node-server",
"keywords": [
"simple",
"node.js",
"node",
"http",
"https",
"server"
],
"scripts": {
"up": "npm up && npm audit fix",
"lint": "eslint --ext .js,.ts ./",
"format": "prettier --write \"**/*.{js,ts,scss,html,md,json}\" --ignore-path .gitignore",
"clean": "rimraf ./lib",
"build": "npm run lint && npm run clean && tsc",
"push-tags": "git push && git push --tags",
"release-major": "npm run build && npm version major -m \"%s\" && npm run push-tags && npm publish",
"release-minor": "npm run build && npm version minor -m \"%s\" && npm run push-tags && npm publish",
"release-patch": "npm run build && npm version patch -m \"%s\" && npm run push-tags && npm publish"
},
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}