-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.44 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
{
"name": "@enspirit/seshat",
"version": "3.0.0-rc.1",
"description": "Seshat v2",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"build:watch": "tsc -w",
"dev": "ROOT_DIR=$PWD tsc-watch --onSuccess 'node ./dist/examples/index.js'",
"example": "ROOT_DIR=$PWD node ./dist/examples/index.js",
"test": "mocha tests/helpers.ts 'tests/**/*.spec.ts'",
"test:watch": "mocha tests/helpers.ts 'tests/**/*.spec.ts' --watch --watch-files src/**/*.ts,tests/**/*.ts",
"lint": "eslint src tests --ext ts",
"preversion": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"files": [
"dist/src",
"dist/package.json"
],
"exports": {
".": "./dist/src/index.js",
"./policies": "./dist/src/policies/index.js",
"./transformers": "./dist/src/transformers/index.js",
"./routers": "./dist/src/express/routers/index.js",
"./actions": "./dist/src/actions/index.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1100.0",
"@aws-sdk/lib-storage": "^3.1100.0",
"@google-cloud/storage": "^7.21.0",
"@types/clamscan": "^2.4.1",
"body-parser": "^2.3.0",
"busboy": "^1.6.0",
"clamscan": "^2.4.0",
"express": "^5.2.1",
"jszip": "^3.10.1",
"mime-types": "^3.0.2",
"sharp": "^0.35.3",
"temp": "^0.9.4",
"winston": "^3.19.0"
},
"devDependencies": {
"@enspirit/eslint-config-node": "^0.1.5",
"@types/busboy": "^1.5.4",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/express": "^5.0.6",
"@types/mime-types": "^3.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.20.1",
"@types/sinon": "^22.0.0",
"@types/sinon-chai": "^4.0.0",
"@types/supertest": "^7.2.1",
"@types/temp": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"aws-sdk-client-mock": "^4.1.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"eslint": "^8.57.1",
"mocha": "^11.7.6",
"sinon": "^22.1.0",
"sinon-chai": "^4.0.1",
"supertest": "^7.2.2",
"tsc-watch": "^7.2.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
},
"overrides": {
"aws-sdk-client-mock": {
"sinon": "$sinon"
},
"brace-expansion": "^5.0.9",
"uuid": "^11.1.1"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=22.12.0"
}
}