-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "@taskany/intl",
"version": "1.0.0",
"description": "Modular lightweight internationalization library for any TS/JS apps",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"generate-i18n": "./bin/generate-i18n.js",
"extract-i18n-meta": "./bin/extract-i18n-meta.js",
"import-i18n": "./bin/import-i18n.js",
"export-i18n-csv": "./bin/export-i18n-csv.js",
"import-i18n-csv": "./bin/import-i18n-csv.js"
},
"files": [
"lib",
"templates"
],
"scripts": {
"build": "npm run clean && npm run compile",
"watch": "tsc -w",
"clean": "rm -rf lib",
"compile": "tsc",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"ci:build": "npm run build"
},
"dependencies": {
"@babel/core": "7.13.8",
"@babel/plugin-proposal-decorators": "7.21.0",
"@babel/preset-env": "7.21.4",
"@babel/preset-typescript": "7.21.4",
"@babel/types": "7.21.4",
"@types/csv-parse": "1.2.2",
"@types/csv-stringify": "3.1.0",
"@types/glob": "5.0.35",
"commander": "12.0.0",
"csv-parse": "4.15.4",
"csv-stringify": "5.6.2",
"debug": "4.3.4",
"ejs": "3.1.9",
"glob": "10.3.10",
"invariant": "2.2.4"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/ejs": "3.1.2",
"@types/invariant": "2.2.37",
"@types/jest": "26.0.22",
"@types/node": "20.4.2",
"jest": "26.6.3",
"typescript": "4.2.4"
}
}