-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@tuckn/WshPolyfill",
"description": "Add useful functions that ES5 and above have into WSH (Windows Script Host).",
"version": "5.1.3",
"author": "Tuckn <tuckn333@gmail.com>",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tuckn"
},
"private": false,
"license": "MIT",
"homepage": "https://tuckn.net/docs/WshPolyfill/",
"repository": {
"type": "git",
"url": "git+https://github.com/tuckn/WshPolyfill.git"
},
"bugs": {
"url": "https://github.com/tuckn/WshPolyfill/issues"
},
"keywords": [
"Windows",
"WSH",
"WSF",
"JScript",
"VBScript",
"polyfill",
"module"
],
"files": [],
"main": "",
"bin": {},
"scripts": {
"install:WshJest": "git submodule add https://github.com/tuckn/WshJest.git ./WshModules/WshJest",
"installModules": "run-s install:*",
"updateModules": "git submodule update --remote",
"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": "run-p lint:*",
"test:String": ".\\scripts\\Test String",
"test:Function": ".\\scripts\\Test Function",
"test:Object": ".\\scripts\\Test Object",
"test:Array": ".\\scripts\\Test Array",
"test:Console": ".\\scripts\\Test Console",
"test:JSON": ".\\scripts\\Test JSON",
"test:ArrayBuffer": ".\\scripts\\Test ArrayBuffer",
"test:Polyfill": ".\\scripts\\Test Polyfill",
"build": "rimraf ./dist & wsh-packager bundle ./Package.wsf",
"test:dist:String": ".\\scripts\\Test dist:String",
"test:dist:Function": ".\\scripts\\Test dist:Function",
"test:dist:Object": ".\\scripts\\Test dist:Object",
"test:dist:Array": ".\\scripts\\Test dist:Array",
"test:dist:Console": ".\\scripts\\Test dist:Console",
"test:dist:JSON": ".\\scripts\\Test dist:JSON",
"test:dist:ArrayBuffer": ".\\scripts\\Test dist:ArrayBuffer",
"test:dist:bundle": ".\\scripts\\Test dist:bundle",
"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.3",
"husky": "8.0.3",
"jsdoc": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "3.2.4",
"rimraf": "^5.0.5"
}
}