-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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": "@borisovg/expressus",
"version": "3.4.2",
"description": "A small, fast, Express-like Node.js web framework.",
"scripts": {
"prepublishOnly": "make build",
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borisovg/expressus.git"
},
"author": {
"name": "George Borisov",
"url": "https://github.com/borisovg"
},
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/borisovg/expressus/issues"
},
"homepage": "https://github.com/borisovg/expressus#readme",
"dependencies": {
"http-hash": "2.0.1",
"mime-types": "2.1.35",
"tslib": "^2"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@types/mime-types": "^2",
"@types/mocha": "^10",
"@types/node": "^20",
"@types/sinon": "^17",
"c8": "^9",
"eslint": "^8",
"mocha": "^10",
"prettier": "^3",
"sinon": "^17",
"ts-mocha": "^10",
"typescript": "^5"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": {
"singleQuote": true,
"tabWidth": 2
}
}