-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 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
{
"author": "Nicholas Jamieson <[email protected]>",
"bugs": {
"url": "https://github.com/cartant/eslint-etc/issues"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.0.0",
"tsutils": "^3.17.1",
"tsutils-etc": "^1.4.1"
},
"description": "Utils for ESLint TypeScript rules",
"devDependencies": {
"@cartant/eslint-config": "^3.0.0",
"@types/chai": "^4.0.0",
"@types/common-tags": "^1.8.0",
"@types/eslint": "^8.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.0.0",
"common-tags": "^1.8.0",
"eslint": "^8.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"mkdirp": "^1.0.0",
"mocha": "^9.0.0",
"prettier": "~2.7.0",
"rimraf": "^3.0.0",
"typescript": "~4.7.4"
},
"files": [
"dist",
"source"
],
"homepage": "https://github.com/cartant/eslint-etc",
"keywords": [
"eslint",
"typescript"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts}": "prettier --write"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"name": "eslint-etc",
"optionalDependencies": {},
"peerDependencies": {
"eslint": "^8.0.0",
"typescript": ">=4.0.0"
},
"private": false,
"publishConfig": {
"tag": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/cartant/eslint-etc.git"
},
"scripts": {
"dist": "yarn run dist:clean && yarn run dist:build",
"dist:build": "yarn run dist:build:cjs && yarn run dist:build:esm",
"dist:build:cjs": "tsc -p tsconfig-dist-cjs.json",
"dist:build:esm": "tsc -p tsconfig-dist-esm.json",
"dist:clean": "rimraf dist",
"lint": "eslint source/**/*.ts",
"prepare": "husky install",
"prepublishOnly": "yarn run test && yarn run dist",
"prettier": "prettier --write \"./{scripts,source}/**/*.{js,json,ts}\"",
"prettier:ci": "prettier --check \"./{scripts,source}/**/*.{js,json,ts}\"",
"test": "yarn run lint && yarn run test:build && yarn run test:mocha",
"test:build": "yarn run test:clean && tsc -p tsconfig.json",
"test:clean": "rimraf build",
"test:mocha": "mocha build/**/*-spec.js"
},
"types": "./dist/cjs/index.d.ts",
"version": "5.2.1"
}