-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.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
81
82
83
84
85
86
{
"name": "eslint-plugin-no-eslint-disable",
"version": "0.0.0-dev",
"license": "MIT",
"description": "Disallow disable rules by `eslint-disable` comment",
"keywords": [
"eslintplugin",
"eslint-plugin"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "npm run mocha -- src/**/*.spec.ts",
"test:cov": "c8 --reporter text --exclude \"**/*.spec.ts\" --exclude \"**/testing/**\" npm run test:r -- --no-timeouts",
"test:w": "npm run test:r -- --watch-files src --watch",
"lint": "npm run eslint && npm run tscheck",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "npm run eslint -- --fix",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"lint:fix": "npm run eslint:fix && npm run lint:doc:fix",
"lint:doc": "sh Taskfile remark_run",
"lint:doc:fix": "sh Taskfile remark_run --output",
"format:src": "prettier src --write",
"commit_lint": "sh Taskfile commit_lint",
"commit": "cz",
"dev": "node node_modules/webpack-dev-server/bin/webpack-dev-server",
"build": "sh Taskfile build_pkgroll",
"lint:w": "run-p tscheck:w eslint:w",
"test:m": "node node_modules/@stryker-mutator/core/bin/stryker.js run",
"mocha": "node -r ts-node/register node_modules/mocha/bin/mocha",
"test:d": "ndb -r ts-node/register node_modules/mocha/bin/mocha src/**/*.spec.ts --watch-files src --no-timeouts --watch"
},
"peerDependencies": {
"eslint": "7 8"
},
"config": {},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "18.6.2",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"c8": "^7.12.0",
"commitizen": "^4.2.5",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-regexp": "^1.8.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "43.0.2",
"eslint-plugin-wix-editor": "^3.3.0",
"expect": "^28.1.3",
"git-branch-is": "^4.0.0",
"mocha": "10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"request": "^2.88.2",
"semantic-release": "^19.0.3",
"simplytyped": "^3.3.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"tslib": "^2.4.0",
"typescript": "4.7.4",
"watchexec-bin": "^1.0.0"
}
}