-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.19 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
81
82
{
"name": "eslint-plugin-tap",
"version": "1.2.1",
"description": "ESLint rules for tap",
"license": "MIT",
"repository": "https://github.com/getoslash/eslint-plugin-tap",
"private": false,
"author": {
"name": "GP",
"email": "[email protected]"
},
"engines": {
"node": ">=12.0"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives --cache '**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"build": "tsup",
"test": "tap --rcfile=./test/.taprc",
"test:only": "TAP_ONLY=1 npm run test",
"coverage": "npm run test -- --check-coverage --coverage-report=lcovonly --coverage-report=cobertura --coverage-report=text --coverage-report=text-summary",
"release": "semantic-release",
"prepublishOnly": "npm run build"
},
"files": [
"dist/"
],
"main": "dist/index.js",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"tap",
"node-tap",
"test",
"spec",
"runner",
"assert",
"asserts",
"assertion"
],
"dependencies": {
"espurify": "2.1.1",
"multimatch": "5.0.0",
"pkg-up": "3.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.5",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@swc/core": "1.2.218",
"@types/eslint": "8.4.1",
"@types/estree": "0.0.51",
"@types/node": "18.6.1",
"@types/tap": "15.0.6",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"eslint": "8.10.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"tap": "16.3.0",
"ts-node": "10.9.1",
"tsup": "6.2.0",
"typescript": "4.7.4"
},
"peerDependencies": {
"eslint": ">=3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}