This repository has been archived by the owner on May 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.08 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": "@eslint-kit/cli",
"version": "6.0.0",
"description": "A cli tool for eslint-config-kit",
"keywords": [
"eslint",
"config",
"kit",
"cli",
"eslint-config-kit",
"eslint-kit"
],
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"bin": {
"eslint-kit": "bin/eslint-kit.js"
},
"scripts": {
"build": "tsc",
"clean": "gulp clean:bundle",
"lint": "eslint {lib,bin}/**/*.ts --fix",
"start": "node bin/eslint-kit.js",
"test": "jest --config jest-config.json --passWithNoTests --silent",
"test:dev": "npm run clean && jest --config jest-config.json --passWithNoTests --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eslint-kit/cli.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/eslint-kit/cli/issues"
},
"homepage": "https://github.com/eslint-kit/cli#readme",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^5.0.0-2",
"deepmerge": "^4.2.2",
"glob": "^7.1.7",
"glob-promise": "^4.1.0",
"inquirer": "7.0.4",
"mem": "^6.0.1",
"nanoid": "^2.1.11",
"ora": "^4.0.3",
"semver": "^7.3.5",
"yamljs": "0.3.0"
},
"devDependencies": {
"@types/deepmerge": "^2.2.0",
"@types/inquirer": "6.5.0",
"@types/jest": "25.1.2",
"@types/nanoid": "^2.1.0",
"@types/node": "12.12.21",
"@types/ora": "^3.2.0",
"@types/rimraf": "2.0.3",
"@types/semver": "^7.3.4",
"@types/webpack-node-externals": "1.7.1",
"@types/yamljs": "0.2.30",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"delete-empty": "3.0.0",
"eslint": "^6.8.0",
"eslint-config-kit": "^3.3.2",
"eslint-config-prettier": "6.10.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"jest": "25.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"ts-jest": "25.2.0",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"typescript": "^3.7.5"
}
}