-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "@dnvgl/i18n",
"version": "1.17.1",
"description": "A set of functions to support multiple languages/cultures in a browser or Node.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest",
"build": "rimraf lib && tsc -p tsconfig.build.json",
"compile": "tsc --noEmit --skipLibCheck"
},
"keywords": [
"internationalization",
"globalization",
"i18n",
"l10n",
"ISO",
"ISO 3166",
"ISO 3166-1",
"ISO 4217",
"format"
],
"homepage": "https://github.com/dnvgl/i18n",
"bugs": {
"url": "https://github.com/dnvgl/i18n/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dnvgl/i18n.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.13.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.8.0",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}