-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 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": "t-i18n",
"version": "0.7.0",
"description": "Simple, standards-based localization",
"author": "Mitch Cohen <mitch.cohen@me.com>",
"homepage": "https://github.com/agilebits/t-i18n#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/agilebits/t-i18n.git"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/es6/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean; cd src/; tsc -d; tsc -d -p tsconfig.es6.json; cd ../scripts; tsc",
"prepublishOnly": "npm install && npm run build",
"prettier": "prettier . --write",
"prettier-check": "prettier . --check",
"test": "NODE_OPTIONS=\"--import=tsx\" mocha ./test/*.test.ts"
},
"prettier": {
"useTabs": true
},
"bin": {
"extract-strings": "scripts/extract-strings.js"
},
"keywords": [
"i18n",
"l10n",
"globalization",
"translation",
"icu"
],
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.10",
"@xmldom/xmldom": "^0.9.8",
"chai": "^5.2.1",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"glob": "^11.0.3",
"minimist": "^1.2.8"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}