-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
{
"name": "@nodesecure/actionable",
"version": "1.0.0",
"description": "The missing security layer for your GitHub Actions workflows. Scan for excessive permissions, unpinned dependencies, dangerous variable usage and more.",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src test",
"test-only": "node --test ./test/**/*.spec.ts",
"test": "npm run lint && npm run test-only",
"coverage": "c8 -r html npm test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/actionable.git"
},
"keywords": [
"github",
"actions",
"security",
"permissions",
"vulnerabilities",
"npm",
"dependencies",
"static analysis"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"bugs": {
"url": "https://github.com/NodeSecure/actionable/issues"
},
"homepage": "https://github.com/NodeSecure/actionable#readme",
"devDependencies": {
"@openally/config.eslint": "^2.2.0",
"@openally/config.typescript": "^1.2.1",
"@types/adm-zip": "0.5.7",
"@types/node": "25.5.0",
"c8": "^11.0.0",
"typescript": "^5.9.3",
"undici": "7.24.1"
},
"dependencies": {
"@nodesecure/fs-walk": "2.0.0",
"@openally/github.sdk": "1.1.1",
"adm-zip": "0.5.16"
}
}