-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "secure-file-validator",
"version": "1.0.2",
"description": "Secure file validation library with signature checking and content validation",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
},
"scripts": {
"clean": "rm -rf *.tgz",
"type-check": "tsc --noEmit",
"pack:dry": "npm pack --dry-run",
"test-pack": "npm run pack && npm i -g secure-file-validator-*.tgz",
"prepublish:check": "npm run clean && npm run type-check && npm run pack:dry",
"publish:public": "npm publish --access public"
},
"files": [
"index.js",
"index.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"file-validation",
"security",
"file-type",
"mime-type",
"signature-check",
"file-security",
"esm"
],
"author": "Listiananda Apriliawan <listiananda.apriliawan@gmail.com> (https://naandalist.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Naandalist/secure-file-validator.git"
},
"bugs": {
"url": "https://github.com/Naandalist/secure-file-validator/issues"
},
"homepage": "https://github.com/Naandalist/secure-file-validator#readme",
"engines": {
"node": ">=14.16.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"typescript": "^5.6.3"
}
}