-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.18 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.18 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
{
"name": "npm-canary",
"version": "1.0.0",
"description": "Detect secrets, source maps, and oversized files before (and after) npm publish",
"keywords": [
"npm",
"publish",
"security",
"source-map",
"secrets",
"audit",
"canary"
],
"homepage": "https://github.com/publishcanary/npm-canary",
"bugs": {
"url": "https://github.com/publishcanary/npm-canary/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/publishcanary/npm-canary.git"
},
"license": "MIT",
"author": "Diego Fernando (@diegosantdev)",
"bin": {
"npm-canary": "./src/index.js",
"canary": "./src/index.js"
},
"scripts": {
"test": "node --test",
"test:watch": "node --test --watch",
"prepublishOnly": "npm test",
"canary": "node src/index.js check"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"commander": "^12.1.0",
"fast-glob": "^3.3.2",
"kleur": "^4.1.5",
"node-fetch": "^3.3.2",
"tar": "^7.4.3"
},
"devDependencies": {
"@types/node": "^22.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/**/*.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}