forked from Kocal/eslint-config-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "@kocal/eslint-config-generator-plugin-typescript",
"description": "Add TypeScript support to @kocal/eslint-config-generator.",
"version": "2.2.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kocal/eslint-config-generator.git",
"directory": "packages/plugin-typescript"
},
"author": "Hugo Alliaume <hugo@alliau.me>",
"license": "MIT",
"scripts": {
"build": "rm -fr dist && npm run build:js && npm run build:types",
"build:js": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"rebuild": "npm run build",
"test": "npm run test:ts && npm run test:unit",
"test:ts": "tsc --noEmit",
"test:unit": "echo 'No tests.'",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix"
},
"engines": {
"node": "^12.13.0 || >=14.0.0"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@kocal/eslint-config-generator-common": "workspace:*",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0"
},
"peerDependencies": {
"typescript": "^4.0.0",
"eslint": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/eslint": "^7.2.4",
"eslint": "^7.11.0",
"prettier": "^2.1.2",
"rollup": "^2.32.0",
"typescript": "^4.0.3"
}
}