@nodesecure/scanner 8.0.0 → 8.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data/top-packages.json +50000 -0
- package/package.json +13 -4
package/package.json
CHANGED
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nodesecure/scanner",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "A package API to run a static analysis of your module's dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"exports":
|
|
7
|
-
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"import": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./extractors": {
|
|
12
|
+
"types": "./dist/extractors/index.d.ts",
|
|
13
|
+
"import": "./dist/extractors/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
8
17
|
"engines": {
|
|
9
18
|
"node": ">=20"
|
|
10
19
|
},
|
|
11
20
|
"scripts": {
|
|
12
|
-
"build": "tsc -b
|
|
21
|
+
"build": "tsc -b && cp -R ./src/data ./dist/data",
|
|
13
22
|
"lint": "eslint src test",
|
|
14
23
|
"prepublishOnly": "npm run build && pkg-ok",
|
|
15
24
|
"test": "c8 -r html npm run test-only && npm run test-types",
|