generated from el3um4s/typescript-npm-package-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.86 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
{
"name": "@el3um4s/run-vbs",
"version": "1.1.2",
"description": "Run .vbs script with Node",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"check-updates": "npx npm-check-updates",
"check-updates:minor": "npx npm-check-updates --target minor",
"check-updates:patch": "npx npm-check-updates --target patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/el3um4s/run-vbs.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"nodejs",
"windows",
"node",
"node-js",
"vbscript",
"vbs",
"cscript",
"vbscript-script",
"cscripts"
],
"author": "Samuele C. De Tomasi",
"license": "MIT",
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/el3um4s"
},
{
"type": "individual",
"url": "https://www.paypal.me/el3um4s"
}
],
"bugs": {
"url": "https://github.com/el3um4s/run-vbs/issues"
},
"homepage": "https://github.com/el3um4s/run-vbs#readme",
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"ansi-regex": ">=6.0.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"dependencies": {
"tmp": "^0.2.1"
}
}