-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "kequapp",
"version": "0.8.1",
"description": "Non-intrusive Node JavaScript web app framework",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"start:basic": "ts-node ./examples/basic/server.ts",
"start:file-server": "ts-node ./examples/file-server/server.ts",
"test": "kequtest --ts",
"watch": "nodemon --watch \"**\" --ext \"ts\" --exec \"npm t\"",
"lint": "eslint ."
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/Kequc/kequapp/issues"
},
"homepage": "https://kequapp.kequtech.com",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Kequc/kequapp.git"
},
"author": "Nathan Lunde-Berry",
"license": "ISC",
"keywords": [
"createApp",
"IncomingMessage",
"ServerResponse",
"web",
"framework",
"http",
"rest",
"server",
"api"
],
"devDependencies": {
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"kequtest": "^1.0.1",
"nodemon": "^2.0.16",
"ts-node": "^10.2.1",
"typescript": "^4.6.2"
}
}