-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "@nodesecure/npm-security-fetcher",
"version": "2.0.0",
"description": "Fetch packages from npm for Security purposes",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"nsf": "./dist/bin/index.js"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint src bin example",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/npm-security-fetcher.git"
},
"keywords": [
"npm",
"security",
"fetcher",
"analyser"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/npm-security-fetcher/issues"
},
"homepage": "https://github.com/NodeSecure/npm-security-fetcher#readme",
"devDependencies": {
"@openally/config.eslint": "^1.1.0",
"@openally/config.typescript": "^1.0.3",
"@types/node": "^22.2.0",
"@types/pacote": "^11.1.8",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@nodesecure/js-x-ray": "^8.0.0",
"@nodesecure/npm-registry-sdk": "^3.0.0",
"@nodesecure/scanner": "^6.1.0",
"@openally/mutex": "^1.0.0",
"@slimio/is": "^2.0.0",
"dotenv": "^16.4.5",
"kleur": "^4.1.5",
"klona": "^2.0.6",
"pacote": "^21.0.0",
"sade": "^1.8.1",
"ts-node": "^10.9.2"
}
}