-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "@nodesecure/tree-walker",
"version": "2.4.0",
"description": "NodeSecure tree walker",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -b",
"prepublishOnly": "npm run build",
"test-only": "node --test ./test/**/*.spec.ts",
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/tree-walker"
},
"files": [
"dist"
],
"keywords": [
"NodeSecure",
"tree",
"walker"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
"homepage": "https://github.com/NodeSecure/tree/master/workspaces/tree-walker#readme",
"dependencies": {
"@nodesecure/js-x-ray": "12.0.0",
"@nodesecure/npm-registry-sdk": "^4.0.0",
"@nodesecure/npm-types": "^1.1.0",
"@npmcli/arborist": "9.1.10",
"combine-async-iterators": "^3.0.0",
"itertools": "^2.3.1",
"npm-pick-manifest": "^11.0.1",
"pacote": "^21.0.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/npmcli__arborist": "^6.3.0"
}
}