-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 2.53 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
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
93
94
95
96
97
98
99
{
"name": "tenso",
"description": "Tenso is an HTTP REST API framework",
"version": "17.2.4",
"homepage": "https://github.com/avoidwork/tenso",
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"repository": {
"type": "git",
"url": "git://github.com/avoidwork/tenso.git"
},
"bugs": {
"url": "https://github.com/avoidwork/tenso/issues"
},
"license": "BSD-3-Clause",
"engineStrict": true,
"engines": {
"node": ">=17.0.0"
},
"scripts": {
"benchmark": "node benchmark.js",
"build": "npm run lint && npm run rollup",
"changelog": "auto-changelog -p",
"sample": "node sample.js",
"lint": "eslint *.js src/**/*.js test/*.js",
"fix": "eslint --fix *.js src/**/*.js test/*.js",
"mocha": "nyc mocha test/*.test.js",
"rollup": "rollup --config",
"test": "npm run lint && npm run mocha",
"prepare": "husky",
"types": "npx -p typescript tsc src/tenso.js --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"source": "src/tenso.js",
"main": "dist/tenso.cjs",
"exports": {
"types": "./types/tenso.d.ts",
"import": "./dist/tenso.js",
"require": "./dist/tenso.cjs"
},
"type": "module",
"types": "types/**/*.d.ts",
"files": [
"dist/tenso.cjs",
"dist/tenso.js",
"types/tenso.d.ts",
"www/template.html",
"www/assets"
],
"dependencies": {
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.6",
"csv-stringify": "^6.5.1",
"express-prom-bundle": "^8.0.0",
"express-session": "^1.18.0",
"fast-xml-parser": "^4.5.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"keysort": "^3.0.1",
"lusca": "^1.7.0",
"mime-db": "^1.53.0",
"passport": "^0.7.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.1",
"passport-oauth2": "^1.8.0",
"precise": "^4.0.3",
"tiny-coerce": "^3.0.2",
"tiny-etag": "^4.0.5",
"tiny-eventsource": "^3.0.8",
"tiny-jsonl": "^3.0.2",
"tiny-merge": "^2.0.0",
"woodland": "^20.1.2",
"yamljs": "^0.3.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"auto-changelog": "^2.5.0",
"autocannon": "^8.0.0",
"concurrently": "^9.0.1",
"csv-parse": "^5.5.6",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"rollup": "^4.24.0",
"tiny-httptest": "^4.0.13",
"typescript": "^5.6.2"
},
"keywords": [
"rest",
"api",
"cqrs",
"gateway",
"server",
"hypermedia",
"framework",
"http",
"https"
]
}