-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (50 loc) · 1.13 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
{
"name": "@flashfoodco/superstruct-middleware",
"version": "1.1.0",
"description": "Express JS middleware for superstruct",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"license": "UNLICENSED",
"author": "Flashfood <info@flashfood.com>",
"repository": {
"type": "git",
"url": "https://github.com/Flashfoodco/superstruct-middleware"
},
"engines": {
"node": "^18.14.0",
"npm": "^9.3.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@Flashfoodco"
},
"files": [
"dist"
],
"scripts": {
"test": "jest --testMatch '**/__tests__/**/*.spec.ts'",
"build": "tsc -d"
},
"peerDependencies": {
"superstruct": "^1.0.3"
},
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.1",
"@types/supertest": "^2.0.12",
"express": "^4.18.2",
"jest": "^29.4.3",
"superstruct": "^1.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"volta": {
"node": "18.14.0",
"npm": "9.3.1"
}
}