-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "@nodesecure/utils",
"version": "2.3.0",
"description": "NodeSecure utilities",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"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/utils"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
"homepage": "https://github.com/NodeSecure/tree/master/workspaces/utils#readme",
"keywords": [
"utils",
"nsecure",
"nodesecure"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT"
}