This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.63 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
57
58
59
60
61
62
63
64
65
66
{
"name": "@nodesecure/rc",
"version": "4.0.0",
"description": "NodeSecure runtime configuration",
"exports": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test-only": "glob -c \"tsx --test\" \"test/**/*.spec.ts\"",
"test": "npm run test-only && npm run test:tsd",
"test:tsd": "npm run build && tsd",
"coverage": "c8 -r html npm test",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/rc.git"
},
"files": [
"dist"
],
"keywords": [
"rc",
"config",
"configuration"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/rc/issues"
},
"homepage": "https://github.com/NodeSecure/rc#readme",
"devDependencies": {
"@nodesecure/eslint-config": "^2.0.0-beta.0",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^22.0.0",
"@types/zen-observable": "^0.8.4",
"ajv": "^8.12.0",
"c8": "^10.1.2",
"glob": "^11.0.0",
"tsd": "^0.31.0",
"tsx": "^4.16.3",
"typescript": "^5.5.4"
},
"dependencies": {
"@nodesecure/i18n": "^4.0.1",
"@nodesecure/js-x-ray": "^7.3.0",
"@nodesecure/npm-types": "^1.0.0",
"@nodesecure/vulnera": "^2.0.1",
"@openally/config": "^1.0.1",
"@openally/result": "^1.2.1",
"lodash.merge": "^4.6.2",
"type-fest": "^4.23.0"
},
"tsd": {
"directory": "test/types",
"compilerOptions": {
"esModuleInterop": true
}
}
}