-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
115 lines (115 loc) · 3.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"author": "Raman Lauryniuk <[email protected]>",
"name": "ngx-translate-lint",
"version": "1.22.0",
"description": "Simple tools for check `ngx-translate` keys in app",
"license": "MIT",
"repository": "https://github.com/romanrostislavovich/ngx-translate-lint.git",
"bugs": "https://github.com/romanrostislavovich/ngx-translate-lint/issues",
"bin": {
"ngx-translate-lint": "dist/bin.js"
},
"main": "dist/src/core/index.js",
"scripts": {
"tsc": "./node_modules/.bin/tsc",
"markdownlint": "./node_modules/.bin/markdownlint",
"tslint": "./node_modules/.bin/tslint",
"doc:cli": "typedoc --mode modules --excludePrivate --excludeProtected --out ./docs/cli/ ./src/cli/",
"doc:core": "typedoc --mode modules --excludePrivate --excludeProtected --out ./docs/core/ ./src/core/",
"doc": "npm run doc:core && npm run doc:cli",
"lint:typescript": "tslint -c tslint.json --project . -t codeFrame",
"lint:markdown": "markdownlint --config ./config/markdownlint.json ./docs/**/*.md",
"test:unit": "nyc mocha -r ts-node/register ./test/unit/*.test.ts",
"test:integration": "mocha -r ts-node/register ./test/integration/*.test.ts",
"build": "tsc -p . && gulp -f ./config/gulp.js",
"lint": "npm run lint:typescript && npm run lint:markdown",
"test": "npm run test:integration",
"pre:release": "npm run lint && npm run build && npm run test",
"semantic-release": "env-cmd semantic-release --no-ci",
"self-lint": "npx ngx-translate-lint -p ./test/integration/inputs/views/*.{html,ts} -l ./test/integration/inputs/locales/*.json -i ./test/integration/inputs/locales/incorrect.json"
},
"files": [
"dist/",
"README.md"
],
"keywords": [
"ngx-translate",
"validator",
"linting",
"cli"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
},
"nyc": {
"check-coverage": true,
"lines": 70,
"statements": 70,
"functions": 70,
"branches": 70,
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage/**/*",
"test/**/*",
"dist/**/*",
"src/config.ts",
"index.ts",
"bin.ts"
],
"reporter": [
"html",
"text-summary"
],
"all": true,
"require": [
"ts-node/register"
]
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"conventional-cli": "^1.2.0",
"dir-glob": "^3.0.1",
"fs": "0.0.1-security",
"glob": "^7.1.4",
"lodash": "^4.17.20",
"path": "^0.12.7",
"rxjs": "^6.5.4",
"string-similarity": "^4.0.1",
"typescript": "^4.1.2"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"@types/chai": "^4.1.7",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/dir-glob": "^2.0.0",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.132",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.2",
"@types/sinon": "^7.0.11",
"@types/string-similarity": "^3.0.0",
"chai": "^4.2.0",
"env-cmd": "^10.1.0",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"husky": "^2.3.0",
"markdownlint-cli": "^0.16.0",
"mocha": "^8.2.1",
"mocked-env": "^1.3.5",
"nyc": "^14.1.1",
"semantic-release": "^17.3.7",
"sinon": "^7.5.0",
"ts-node": "^10.6.0",
"tslint": "^5.11.0",
"typedoc": "^0.15.0",
"typescript": "^4.1.2"
}
}