-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.75 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
{
"name": "matrix-web-i18n",
"version": "3.3.0",
"description": "Internationalisation utils for Matrix web projects",
"keywords": [
"i18n"
],
"license": "Apache-2.0",
"files": [
"README.md",
"package.json",
"scripts",
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"matrix-gen-i18n": "scripts/gen-i18n.js",
"matrix-compare-i18n-files": "scripts/compare-file.js",
"matrix-i18n-rekey": "scripts/rekey.js",
"matrix-i18n-lint": "scripts/lint-i18n.js"
},
"scripts": {
"build:ts": "tsc",
"build:ts-scripts": "tsc -p tsconfig-scripts.json",
"build:chmod": "chmod +x scripts/*.js",
"build:shebang": "perl -i -pe 'print \"#!/usr/bin/env node\\n\\n\" if $. == 1 && !/^#/; close ARGV if eof' scripts/*.js",
"build": "yarn build:ts && yarn build:ts-scripts && yarn build:chmod && yarn build:shebang",
"lint": "yarn lint:types",
"lint:types": "tsc --noEmit",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/matrix-org/matrix-web-i18n"
},
"homepage": "https://github.com/matrix-org/matrix-web-i18n",
"bugs": {
"url": "https://github.com/matrix-org/matrix-web-i18n/issues"
},
"dependencies": {
"@babel/parser": "^7.18.5",
"@babel/traverse": "^7.18.5",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"walk": "^2.3.15"
},
"devDependencies": {
"@types/babel__traverse": "^7.17.1",
"@types/lodash": "^4.14.197",
"@types/minimist": "^1.2.2",
"@types/node": "^18.0.0",
"@types/walk": "^2.3.1",
"typescript": "^4.7.4"
}
}