-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.54 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
{
"name": "@forthright/ferret",
"version": "0.19.6",
"description": "Open platform for continuous software analysis",
"main": "lib/index.js",
"types": "src/@types/index.d.ts",
"bin": {
"ferret": "bin/ferret"
},
"files": [
"bin/ferret",
"lib",
"src/@types",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"author": "Brent Lintner <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/forthright/ferret/issues"
},
"homepage": "https://github.com/forthright/ferret",
"repository": {
"type": "git",
"url": "https://github.com/forthright/ferret"
},
"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.20",
"@types/inquirer": "^0.0.37",
"@types/js-yaml": "^3.10.1",
"@types/lodash": "^4.14.105",
"@types/loglevel": "^1.5.3",
"@types/node": "^9.4.7",
"@types/opn": "^5.1.0",
"@types/ora": "^1.3.3",
"@types/os-name": "^2.0.0",
"@types/request": "^2.47.0",
"bluebird": "^3.5.1",
"chalk": "^2.3.2",
"commander": "^2.15.1",
"cross-spawn": "^6.0.5",
"emphasize": "^1.5.0",
"error-ex": "^1.3.1",
"git-diff-tree": "^1.0.0",
"ignore": "^3.3.7",
"inquirer": "^5.1.0",
"js-yaml": "^3.11.0",
"language-detect": "^1.1.0",
"linez": "^4.1.4",
"lodash": "^4.17.x",
"loglevel": "^1.6.1",
"npm-run-path": "^2.0.2",
"opn": "^5.3.0",
"ora": "^2.0.0",
"os-name": "^2.0.1",
"request": "^2.85.0",
"unixify": "^1.0.0"
},
"devDependencies": {
"@forthright/ferret": "^0.19.6",
"@forthright/ferret-depcheck": "^0.1.17",
"@forthright/ferret-license": "^0.4.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coffee-script": "^1.12.7",
"globstar": "^1.0.0",
"hasha": "^3.0.0",
"mimus": "^0.2.8",
"mocha": "^5.0.4",
"nyc": "^11.6.0",
"release-it": "^7.2.1",
"rimraf": "^2.6.2",
"shelljs": "^0.8.1",
"sinon": "^4.4.6",
"sinon-chai": "^3.0.0",
"sloc": "^0.2.0",
"tar": "^4.4.1",
"typescript": "^2.7.2"
},
"scripts": {
"build": "node build/scripts/build-all",
"build:clean": "node build/scripts/build-clean",
"build:linux": "node build/scripts/build linux",
"build:mac": "node build/scripts/build mac",
"build:win": "node build/scripts/build win",
"build:deb": "node build/scripts/build-deb",
"build:rpm": "node build/scripts/build-rpm",
"build:brew": "node build/scripts/build-brew",
"build:choco": "node build/scripts/build-choco",
"build:aur": "node build/scripts/build-aur",
"c": "tsc",
"compile": "tsc",
"compile:clean": "node build/scripts/compile-clean",
"dev": "tsc -w",
"release": "node build/scripts/release",
"release:docs": "node build/scripts/release-docs",
"stats": "sloc -d -f cli-table -k total,source,comment -e 'fixtures|@types' src test",
"test": "globstar -- _mocha \"test/spec/**/*.coffee\"",
"test:unit": "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:cov:lint": "nyc check-coverage --lines 97 --branches 88",
"test:ci": "node build/scripts/test-ci-build",
"test:quality": "ferret a -u -x src.ts:lib.js -n"
}
}