-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.04 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "restnio",
"version": "4.1.0",
"description": "Node implementation of RestNio, the easy peasy API system.",
"main": "index.js",
"scripts": {
"test": "mocha \"test/**/*.js\"",
"test:unit": "mocha \"test/unit/**/*.js\"",
"test:integration": "mocha \"test/integration/**/*.js\"",
"test:e2e": "mocha \"test/e2e/**/*.js\"",
"test:watch": "mocha \"test/**/*.js\" --watch",
"test:coverage": "c8 mocha \"test/**/*.js\"",
"test:types": "tsc -p tsconfig.types-test.json --noEmit",
"build:types": "tsc",
"prepack": "npm run build:types",
"start": "node index.js"
},
"types": "./types/index.d.ts",
"files": [
"index.js",
"lib/",
"types/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RestNio/RestNio.js.git"
},
"keywords": [
"api",
"websocket",
"http",
"server",
"rest"
],
"author": "7kasper",
"license": "MIT",
"bugs": {
"url": "https://github.com/RestNio/RestNio.js/issues"
},
"homepage": "https://github.com/RestNio/RestNio.js#readme",
"dependencies": {
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mime-types": "^3.0.2",
"ms": "^2.1.3",
"parse-multipart-data": "^1.5.0",
"qs": "^6.15.1",
"uuid": "^14.0.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"c8": "^10.1.3",
"mocha": "^11.7.5",
"should": "^13.2.3",
"typescript": "^5.9.3"
},
"c8": {
"reporter": [
"text",
"html",
"lcov"
],
"include": [
"lib/**/*.js",
"index.js"
],
"exclude": [
"test/**",
"examples/**",
"**/node_modules/**"
],
"check-coverage": true,
"lines": 80,
"statements": 80,
"branches": 80,
"functions": 80
},
"optionalDependencies": {
"@msgpack/msgpack": "^3.1.2",
"bufferutil": "^4.0.9",
"utf-8-validate": "^6.0.6"
},
"overrides": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.5",
"glob": "^13.0.6"
}
}