-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "i18n-cleaner",
"version": "0.0.3",
"license": "MIT",
"homepage": "https://github.com/basvdijk/i18n-cleaner",
"repository": "basvdijk/i18n-cleaner",
"type": "module",
"author": {
"name": "Bas van Dijk",
"email": "support@usto.nl",
"url": "https://usto.nl"
},
"contributors": [],
"description": "Checks for missing translations in your source code, and unused translations in your locale JSON files.",
"main": "src/index.js",
"scripts": {
"deploy": "npx np",
"watch": "npx nodemon src/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules npx jest --watchAll --coverage",
"example:vue": "cd test/vue-test && node ../../src/index.js i18n-cleaner.test.conf.json",
"example:angular": "cd test/angular-test && node ../../src/index.js i18n-cleaner.test.conf.json"
},
"bin": {
"i18n-cleaner": "src/index.js"
},
"keywords": [
"i18n",
"vue-i18n",
"ngx-translate",
"internationalization",
"vue",
"angular"
],
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.3.0",
"dree": "^3.3.7"
},
"devDependencies": {
"jest": "^28.1.2",
"nodemon": "^2.0.18",
"np": "^7.6.2"
}
}