-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 911 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 911 Bytes
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
{
"name": "angular-i18n-extractor",
"version": "1.0.0",
"description": "A CLI utility to extract display text from Angular applications and generate i18n JSON files",
"main": "index.js",
"bin": {
"ng-i18n-extract": "./bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:report": "jest --coverage && echo 'Coverage report generated in coverage/lcov-report/index.html'",
"test:watch": "jest --watch",
"test:coverage:watch": "jest --coverage --watch"
},
"keywords": [
"angular",
"i18n",
"internationalization",
"cli",
"text-extraction"
],
"author": "",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"commander": "^11.0.0",
"glob": "^10.3.0"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"jest": "^30.0.4"
}
}