-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.47 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
98
{
"name": "@tuckn/WshPath",
"description": "Adds some useful functions (similar to Node.js path) that handles file path strings into WSH (Windows Script Host).",
"version": "1.0.12",
"author": "Tuckn <tuckn333@gmail.com>",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tuckn"
},
"private": false,
"license": "MIT",
"homepage": "https://tuckn.net/docs/WshPath/",
"repository": {
"type": "git",
"url": "git+https://github.com/tuckn/WshPath.git"
},
"bugs": {
"url": "https://github.com/tuckn/WshPath/issues"
},
"keywords": [
"Windows",
"WSH",
"WSF",
"JScript",
"VBScript",
"module"
],
"files": [],
"main": "",
"bin": {},
"scripts": {
"install:WshJest": "git submodule add https://github.com/tuckn/WshJest.git ./WshModules/WshJest",
"install:WshUtil": "git submodule add https://github.com/tuckn/WshUtil.git ./WshModules/WshUtil",
"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:type": "tsc --noEmit",
"lint": "run-p lint:*",
"test:name:Values": ".\\scripts\\Test Path -t Values$",
"test:name:isUNC": ".\\scripts\\Test Path -t isUNC$",
"test:name:dirname": ".\\scripts\\Test Path -t dirname$",
"test:name:basename": ".\\scripts\\Test Path -t basename$",
"test:name:extname": ".\\scripts\\Test Path -t extname$",
"test:name:parse": ".\\scripts\\Test Path -t parse$",
"test:name:isAbsolute": ".\\scripts\\Test Path -t isAbsolute$",
"test:name:normalize": ".\\scripts\\Test Path -t normalize$",
"test:name:join": ".\\scripts\\Test Path -t join$",
"test:name:resolve": ".\\scripts\\Test Path -t resolve$",
"test:name:relative": ".\\scripts\\Test Path -t relative$",
"test:name:toUNC": ".\\scripts\\Test Path -t toUNC$",
"test:Path": ".\\scripts\\Test Path",
"build": "wsh-packager bundle ./Package.wsf",
"test:dist:module": ".\\scripts\\Test dist:module",
"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:*",
"up-build-doc": "run-s updateModules build 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.8",
"@types/windows-script-host": "^5.8.3",
"cpy-cli": "^4.1.0",
"docdash": "^1.2.0",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"jsdoc": "^3.6.10",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"rimraf": "^3.0.2"
}
}