-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.24 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
{
"name": "@linter/core",
"version": "1.0.0-beta.4",
"description": "Lint all the things... with one command",
"license": "MIT",
"private": false,
"author": {
"name": "Simon Fridlund",
"email": "[email protected]",
"url": "https://github.com/zimme"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linterjs/core.git"
},
"bugs": {
"url": "https://github.com/linterjs/core/issues"
},
"homepage": "https://github.com/linterjs/core#readme",
"keywords": [
"format",
"lint",
"linter"
],
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.14.0",
"yarn": ">= 1.22.4"
},
"files": [
"dist/src/**/*"
],
"main": "dist/src/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf coverage dist",
"clean:build": "rimraf dist",
"clean:test": "rimraf coverage",
"format": "prettier --write .",
"lint": "echo Currently no linter installed",
"prebuild": "npm run clean:build",
"prepublishOnly": "npm run build",
"pretest": "npm run clean:test",
"test": "jest",
"test:verbose": "jest --verbose"
},
"dependencies": {
"common-tags": "^1.8.0",
"import-cwd": "^3.0.0",
"read-pkg-up": "^7.0.1",
"require-relative": "^0.8.7",
"tslib": "^2.0.1",
"winston": "^3.3.3"
},
"optionalDependencies": {},
"peerDependencies": {},
"devDependencies": {
"@babel/core": "~7.11.1",
"@babel/preset-env": "~7.11.0",
"@linter/provider-eslint": "file:mock_modules/@linter/provider-eslint",
"@linter/provider-prettier": "file:mock_modules/@linter/provider-prettier",
"@types/common-tags": "~1.8.0",
"@types/jest": "~26.0.10",
"@types/node": "~14.6.0",
"@types/proxyquire": "~1.3.28",
"@types/require-relative": "~0.8.0",
"@zimme/linter-provider-eslint": "file:mock_modules/@zimme/linter-provider-eslint",
"babel-jest": "~26.3.0",
"jest": "~26.4.0",
"linter-provider-eslint": "file:mock_modules/linter-provider-eslint",
"linter-provider-not-a-provider": "file:mock_modules/linter-provider-not-a-provider",
"memfs": "~3.2.0",
"prettier": "2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.2.0",
"typescript": "~3.9.7",
"unionfs": "~4.4.0"
}
}