-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "@codeborne/i18n-json",
"version": "0.3.7",
"description": "Simple framework-neutral json-based translations with no dependencies",
"type": "module",
"files": ["build/src", "build/bin"],
"types": "build/src/index.d.ts",
"exports": {
"import": "./build/src/index.js",
"types": "./build/src/index.d.ts"
},
"bin": {
"i18n-compile": "build/bin/i18n-compile.js"
},
"scripts": {
"build": "rm -fr build && tsc && chmod +x build/bin/i18n-compile.js",
"prepublish": "npm run build",
"test": "npm run build && mocha 'build/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeborne/i18n-json.git"
},
"keywords": [
"i18n",
"translation",
"localization",
"internationalization"
],
"author": "Anton Keks",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeborne/i18n-json/issues"
},
"homepage": "https://github.com/codeborne/i18n-json#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"typescript": "^5.1.6"
}
}