-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "@nodesecure/i18n",
"version": "4.0.1",
"description": "NodeSecure Internationalization",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test-only": "glob -c \"tsx --test\" \"test/**/*.spec.ts\"",
"test": "c8 -r html npm run test-only",
"build:documentation": "tsx ./scripts/buildDocumentation.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
},
"keywords": [
"i18n",
"nodesecure"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"files": [
"index.d.ts",
"index.js",
"languages",
"src"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
"homepage": "https://github.com/NodeSecure/tree/master/workspaces/i18n#readme",
"devDependencies": {
"@types/lodash.get": "^4.4.9",
"c8": "^10.1.2",
"zup": "^0.0.2"
},
"type": "module",
"engines": {
"node": ">=18"
},
"dependencies": {
"cacache": "^18.0.0",
"deepmerge": "^4.3.1",
"lodash.get": "^4.4.2"
}
}