-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.11 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
87
88
89
90
91
92
93
{
"name": "@tuckn/WshJest",
"description": "The testing module for WSH (Windows Script Host).",
"version": "5.0.4",
"author": "Tuckn <tuckn333@gmail.com>",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tuckn"
},
"private": false,
"license": "MIT",
"homepage": "https://assets.tuckn.net/docs/WshJest",
"repository": {
"type": "git",
"url": "git+https://github.com/tuckn/WshJest.git"
},
"bugs": {
"url": "https://github.com/tuckn/WshJest/issues"
},
"keywords": [
"Windows",
"CLI",
"WSH",
"WSF",
"JScript",
"VBScript",
"test",
"module"
],
"files": [],
"main": "",
"bin": {},
"scripts": {
"ncu:checkUpdate": "npx npm-check-updates",
"ncu:upgrade": "npx npm-check-updates --upgrade && npm install && npm audit fix",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"fix": "run-p fix:*",
"lint:eslint": "eslint --ext js,ts .",
"lint:prettier": "prettier -l \"**/*.{json,md,yml,yaml}\"",
"lint:type": "tsc --noEmit",
"test:name:Be": ".\\scripts\\Test Jest -t Be$",
"test:name:Defined": ".\\scripts\\Test Jest -t Defined$",
"test:name:Equal": ".\\scripts\\Test Jest -t Equal$",
"test:name:Contain": ".\\scripts\\Test Jest -t Contain$",
"test:name:ContainEqual": ".\\scripts\\Test Jest -t ContainEqual$",
"test:name:toBeGreaterThan": ".\\scripts\\Test Jest -t toBeGreaterThan$",
"test:name:toBeGreaterThanOrEqual": ".\\scripts\\Test Jest -t toBeGreaterThanOrEqual$",
"test:name:toBeLessThanOrEqual": ".\\scripts\\Test Jest -t toBeLessThanOrEqual$",
"test:name:toBeLessThan": ".\\scripts\\Test Jest -t toBeLessThan$",
"test:name:toHaveLength": ".\\scripts\\Test Jest -t toHaveLength$",
"test:name:toMatch": ".\\scripts\\Test Jest -t toMatch$",
"test:name:anything": ".\\scripts\\Test Jest -t anything$",
"test:Jest": ".\\scripts\\Test Jest",
"build": "rimraf ./dist & wsh-packager bundle ./Package.wsf",
"test:dist:app": ".\\scripts\\Test dist:app",
"test": "run-s test:dist:*",
"predocs": "rimraf ./docs",
"docs:common": "jsdoc --configure ./jsdoc.json",
"cp-docs-css": "cpy --flat ./assets/styles/jsdoc.css ./docs/styles/",
"cp-docs-img": "cpy ./assets/img/**/* ./docs/img/",
"postdocs": "run-p cp-docs-*",
"docs": "run-s docs:*"
},
"husky": {
"hooks": {
"pre-commit": "echo @FIXME \"npx lint-staged\" fixes all .js!"
}
},
"lint-staged": {
"*.{js}": "eslint --fix",
"*.{json,css,md,yml,yaml}": "prettier --write"
},
"dependencies": {},
"devDependencies": {
"@tuckn/insert-gtag": "^1.1.1",
"@tuckn/wsh-packager": "^1.0.1",
"@types/activex-scripting": "^1.0.12",
"@types/windows-script-host": "^5.8.6",
"cpy-cli": "^5.0.0",
"docdash": "^2.0.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-prettier": "5.1.2",
"husky": "8.0.3",
"jsdoc": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "3.1.1",
"rimraf": "^5.0.5"
}
}