This repository has been archived by the owner on Jul 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
130 lines (130 loc) · 3.36 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "vile",
"version": "0.19.3",
"description": "A code quality tool for any language or platform.",
"main": "lib/index.js",
"types": "src/@types/index.d.ts",
"files": [
"bin/vile",
"lib",
"src/@types",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"bin": {
"vile": "bin/vile"
},
"author": "Brent Lintner <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/forthright/vile/issues"
},
"homepage": "https://github.com/forthright/vile",
"repository": {
"type": "git",
"url": "https://github.com/forthright/vile.git"
},
"keywords": [
"quality",
"analyze",
"analyse",
"lint",
"check",
"code",
"tool",
"static",
"analysis",
"dependency",
"dependencies",
"security",
"maintainability"
],
"engines": {
"node": ">=4.0.0",
"npm": ">=2.0.0"
},
"dependencies": {
"@types/bluebird": "^3.5.17",
"@types/commander": "^2.11.0",
"@types/inquirer": "^0.0.35",
"@types/js-yaml": "^3.10.1",
"@types/lodash": "^4.14.80",
"@types/loglevel": "^1.5.3",
"@types/node": "^8.0.47",
"@types/opn": "^5.1.0",
"@types/ora": "^1.3.0",
"@types/request": "^2.0.7",
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"commander": "^2.12.1",
"cross-spawn": "^5.1.0",
"emphasize": "^1.4.0",
"error-ex": "^1.3.1",
"git-diff-tree": "^1.0.0",
"ignore": "^3.3.7",
"inquirer": "^4.0.0",
"js-yaml": "^3.8.4",
"language-detect": "^1.1.0",
"linez": "^4.1.4",
"lodash": "^4.17.x",
"loglevel": "^1.6.0",
"npm-run-path": "^2.0.2",
"opn": "^5.0.0",
"ora": "^1.3.0",
"request": "^2.83.0",
"unixify": "^1.0.0",
"vile-comment": "^0.1.20",
"vile-coverage": "^0.3.0",
"vile-ncu": "^0.4.0",
"vile-stat": "^0.1.1"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"coffee-script": "^1.12.6",
"globstar": "^1.0.0",
"mimus": "^0.2.8",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"release-it": "^5.0.0",
"retire": "^1.6.0",
"rimraf": "^2.6.1",
"shelljs": "^0.7.7",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"sloc": "^0.2.0",
"typedoc": "^0.9.0",
"typescript": "^2.6.1",
"vile": "^0.19.3",
"vile-coffeelint": "^0.1.16",
"vile-depcheck": "^0.1.17",
"vile-eclint": "^0.1.14",
"vile-escomplex": "^0.1.5",
"vile-eslint": "^0.1.16",
"vile-git": "^0.5.6",
"vile-license": "^0.4.2",
"vile-nsp": "^0.2.14",
"vile-retire": "^0.1.6",
"vile-synt": "^0.1.2",
"vile-tslint": "^0.3.3"
},
"scripts": {
"compile": "tsc",
"clean": "rm -rf {.nyc_output,coverage,lib} && git checkout -- lib",
"dev": "tsc -w",
"gen-docs": "node bin/gen-docs",
"lint-cov": "nyc check-coverage --lines 97 --branches 88",
"ncu": "ncu -u",
"release-it": "release-it",
"stats": "sloc -d -f cli-table -k total,source,comment -e 'fixtures|@types' src test",
"test": "globstar -- _mocha \"test/spec/**/*.coffee\"",
"test-fast": "npm run -s test -- -i --grep 'system ::'",
"test-sys": "npm run -s test -- -R spec --grep 'system ::'",
"test-cov": "nyc -r json -r lcov -r text -x test -x **/node_modules/** npm run -s test",
"test-ci-build": "node bin/test-ci-build",
"tsc": "tsc",
"typedoc": "typedoc",
"vile": "vile a -u -x src.ts:lib.js -n"
}
}