-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
54
55
56
57
58
59
{
"name": "@nodesecure/rc",
"version": "5.3.0",
"description": "NodeSecure runtime configuration",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -b",
"prepublishOnly": "npm run build",
"test-only": "node --test ./test/**/*.spec.ts",
"test-types": "npm run build && tsd && 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/rc"
},
"files": [
"dist"
],
"keywords": [
"rc",
"config",
"configuration"
],
"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/rc#readme",
"devDependencies": {
"@types/lodash.merge": "^4.6.7",
"@types/zen-observable": "^0.8.4",
"ajv": "6.12.6"
},
"dependencies": {
"@nodesecure/js-x-ray": "12.0.0",
"@nodesecure/npm-types": "^1.2.0",
"@nodesecure/vulnera": "^2.0.1",
"@openally/config": "^1.0.1",
"@openally/result": "2.0.0",
"lodash.merge": "^4.6.2",
"type-fest": "^5.0.1"
},
"tsd": {
"directory": "test/types"
}
}