-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "si-encryption",
"version": "0.0.1",
"description": "Enryption in use at SafeInsights",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"pre:push": "npm run lint:fix && npm run typecheck",
"checks": "npm run typecheck && npm run lint",
"ci": "npm run checks && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safeinsights/encryption.git"
},
"author": "Nathan Stitt",
"license": "MIT",
"bugs": {
"url": "https://github.com/safeinsights/encryption/issues"
},
"homepage": "https://github.com/safeinsights/encryption#readme",
"devDependencies": {
"@eslint/js": "*",
"@types/debug": "^4.1.12",
"@types/node": "^24.2.1",
"eslint": "*",
"happy-dom": "*",
"prettier": "*",
"tsx": "^4.20.4",
"typescript-eslint": "^8.49.0",
"vitest": "*"
},
"dependencies": {
"@zip.js/zip.js": "^2.8.23",
"debug": "^4.4.1"
}
}