This repository has been archived by the owner on Oct 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
110 lines (110 loc) · 2.78 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
{
"name": "eclint",
"version": "2.8.1",
"description": "Validate or fix code that doesn't adhere to EditorConfig settings or infer settings from existing code.",
"keywords": [
"editorconfig",
"tools",
"validate",
"fix",
"enforce",
"infer",
"gulpplugin"
],
"bin": {
"eclint": "bin/eclint.js"
},
"main": "dist/eclint.js",
"types": "dist/eclint.d.ts",
"scripts": {
"clean": "rimraf coverage dist **/*.log **/*.orig **/*.TMP",
"codecov": "codecov -f coverage/lcov.info",
"compile": "tsc",
"compile:watch": "tsc --watch",
"eclint": "node bin/eclint.js check",
"lint": "npm run tslint",
"mocha": "mocha --no-timeouts \"dist/**/*.spec.js\"",
"prepare": "npm test",
"pretest": "npm run lint && npm run clean && npm run compile && npm run eclint",
"test": "nyc npm run mocha -- --reporter lcov --reporter spec",
"test:watch": "npm run mocha -- --watch --reporter min",
"tslint": "tslint --project tsconfig.json"
},
"nyc": {
"lines": 97,
"statements": 97,
"functions": 98,
"branches": 96,
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/**/*.spec.js"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true,
"check-coverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/jedmao/eclint.git"
},
"homepage": "https://github.com/jedmao/eclint",
"bugs": {
"url": "https://github.com/jedmao/eclint/issues"
},
"author": "EditorConfig Team",
"license": "MIT",
"dependencies": {
"editorconfig": "^0.15.2",
"file-type": "^10.1.0",
"gulp-exclude-gitignore": "^1.2.0",
"gulp-filter": "^5.1.0",
"gulp-reporter": "^2.9.0",
"gulp-tap": "^1.0.1",
"linez": "^4.1.4",
"lodash": "^4.17.11",
"minimatch": "^3.0.4",
"os-locale": "^3.0.1",
"plugin-error": "^1.0.1",
"through2": "^2.0.3",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.3",
"yargs": "^12.0.2"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/fs-extra": "^5.0.4",
"@types/get-stream": "^3.0.1",
"@types/lodash": "^4.14.117",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.0",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.0",
"@types/through2": "^2.0.34",
"@types/vinyl": "^2.0.2",
"@types/vinyl-fs": "^2.4.9",
"@types/yargs": "^12.0.1",
"chai": "^4.2.0",
"event-stream": "^4.0.1",
"fs-extra": "^7.0.0",
"get-stream": "^4.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"proxyquire": "^2.1.0",
"rimraf": "^2.6.2",
"sinon": "^7.0.0",
"sinon-chai": "^3.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
},
"directories": {
"test": "test"
}
}