-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.57 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
{
"name": "ngx-translate-check",
"version": "1.0.2",
"description": "CLI to test an Angular project using ngx-translate to find missing and unused i18n strings.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"dev": "rollup -c --watch",
"patch-release": "npm version patch",
"minor-release": "npm version major",
"major-release": "npm version major",
"version": "npm run build && git add -A bin",
"postversion": "npm publish && git push --follow-tags"
},
"main": "bin/ngx-translate-check",
"bin": "bin/ngx-translate-check",
"src": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/FranciscoKnebel/ngx-translate-check.git"
},
"keywords": [
"angular",
"ngx-translate",
"i18n"
],
"author": "Francisco Knebel <franciscopaivaknebel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FranciscoKnebel/ngx-translate-check/issues"
},
"homepage": "https://github.com/FranciscoKnebel/ngx-translate-check#readme",
"dependencies": {
"commander": "^3.0.2",
"fast-glob": "^3.2.5",
"glob": "^7.1.7",
"keys-diff": "^1.0.8",
"marky": "^1.2.2"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"rollup": "^2.47.0",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-hashbang": "^2.2.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
},
"files": []
}