-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.27 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
{
"name": "@hkbyte/webapi",
"version": "3.1.0",
"description": "HK Byte Library for HK WebAPI Server",
"main": "lib/index",
"types": "lib/index.d.ts",
"scripts": {
"test": "",
"dev": "tsc --watch",
"clean": "rimraf lib/",
"build": "npm run clean && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hkbyte/npm-webapi.git"
},
"files": [
"package.json",
"lib/"
],
"keywords": [
"hkbyte",
"webapi",
"hk",
"server",
"webserver",
"apiserver",
"apigateway"
],
"author": "Harshit Kunal LLP",
"license": "MIT",
"bugs": {
"url": "https://github.com/hkbyte/npm-webapi/issues"
},
"homepage": "https://github.com/hkbyte/npm-webapi#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hkbyte/validator": "^0.1.1",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-form-data": "^2.0.1",
"@types/helmet": "^0.0.48",
"@types/lodash": "^4.14.161",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-form-data": "^2.0.14",
"helmet": "^3.23.3",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/node": "12",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
}
}