-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.87 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.87 KB
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
{
"name": "@sourcegraph/eslint-plugin-sourcegraph",
"version": "1.0.5",
"description": "Eslint plugin Sourcegraph",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"sourcegraph",
"typescript"
],
"files": [
"dist",
"docs",
"index.d.ts",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/codemod.git",
"directory": "packages/eslint-plugin"
},
"bugs": {
"url": "https://github.com/sourcegraph/codemod/issues"
},
"license": "MIT",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc --build ./tsconfig.build.json",
"build:watch": "tsc --build ./tsconfig.build.json --watch",
"build:clean": "tsc --build --clean ./tsconfig.build.json && rimraf dist ./*.tsbuildinfo",
"typecheck": "tsc --noEmit",
"test": "jest",
"format": "prettier --write \"./**/*.{ts,js,json,md}\" --ignore-path ../../.prettierignore",
"generate:configs": "ts-node --files --transpile-only scripts/generate-configs.ts",
"lint": "eslint . --ext .js,.ts --ignore-path ../../.eslintignore"
},
"dependencies": {
"@sourcegraph/codemod-transforms": "1.0.2",
"@typescript-eslint/experimental-utils": "5.4.0",
"@typescript-eslint/scope-manager": "5.4.0",
"debug": "^4.3.2",
"ignore": "^5.1.8",
"regexpp": "^3.2.0",
"semver": "^7.3.5",
"tsutils": "^3.21.0"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/marked": "5.0.2",
"@types/prettier": "2.4.2",
"@types/semver": "7.3.9",
"marked": "^5.1.2",
"picocolors": "^1.0.0",
"prettier": "*",
"typescript": "*"
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}