-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.49 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
55
56
57
58
59
60
61
62
{
"name": "@nodesecure/ossf-scorecard-sdk",
"version": "3.2.1",
"description": "Node.js SDK for OpenSSF scorecard",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"coverage": "c8 -r html npm test",
"lint": "eslint src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/ossf-scorecard-sdk.git"
},
"files": [
"dist"
],
"keywords": [
"ossf",
"openssf",
"scorecard",
"security",
"opensource",
"maintainer",
"vulnerability",
"best",
"practices"
],
"author": "NodeSecure",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/ossf-scorecard-sdk/issues"
},
"homepage": "https://github.com/NodeSecure/ossf-scorecard-sdk#readme",
"devDependencies": {
"@matteo.collina/tspl": "^0.1.1",
"@nodesecure/eslint-config": "^1.9.0",
"@openally/config.eslint": "^1.0.0",
"@openally/config.typescript": "^1.0.3",
"@slimio/is": "^2.0.0",
"@types/node": "^22.2.0",
"c8": "^10.1.2",
"eslint": "^9.9.0",
"glob": "^11.0.0",
"is-svg": "^5.0.0",
"registry-url": "^6.0.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@myunisoft/httpie": "^5.0.0",
"@nodesecure/npm-registry-sdk": "^3.0.0"
}
}