-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.92 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
{
"name": "eslint-plugin-smarter-tabs",
"version": "1.2.0",
"description": "A tiny ESLint plugin to enforce the usage of smart tabs.",
"license": "ISC",
"author": "cheap glitch <[email protected]> (https://github.com/cheap-glitch)",
"repository": "cheap-glitch/eslint-plugin-smarter-tabs",
"homepage": "https://github.com/cheap-glitch/eslint-plugin-smarter-tabs#readme",
"bugs": "https://github.com/cheap-glitch/eslint-plugin-smarter-tabs/issues",
"funding": "https://github.com/sponsors/cheap-glitch",
"keywords": [
"eslint",
"eslintplugin",
"formatting",
"indent",
"indentation",
"pretty",
"smart",
"spaces",
"style",
"tabs",
"tabulations"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"build:clean": "empty-dir dist && npm run build",
"build:watch": "tsc --watch",
"coverage": "npm test -- --collectCoverage",
"coverage:upload": "coveralls < .coverage/lcov.info",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"test": "jest --runInBand",
"test:watch": "npm test -- --watch"
},
"eslintConfig": {
"root": true,
"extends": [
"@cheap-glitch/typescript",
"plugin:eslint-plugin/all"
],
"env": {
"es6": true,
"node": true
}
},
"jest": {
"preset": "ts-jest",
"coverageDirectory": ".coverage"
},
"peerDependencies": {
"eslint": "^8.0.0"
},
"devDependencies": {
"@cheap-glitch/eslint-config-typescript": "^2.2.0",
"@cheap-glitch/tsconfig": "^1.0.0",
"@types/eslint": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"empty-dir-cli": "^1.0.2",
"eslint": "^8.6.0",
"eslint-plugin-eslint-plugin": "^4.1.0",
"jest": "^27.4.7",
"outdent": "^0.8.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}