-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.25 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
{
"name": "vbs2js-runtime",
"version": "1.0.0-alpha.83",
"description": "This library provides compatibility helper methods for Classic ASP VBScript that has been converted to JScript.",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint .",
"build": "tsc && npm run lint",
"test": "jest",
"prepublishOnly": "npm run build && npm run test",
"postversion": "git push && git push --tags",
"semantic-release": "semantic-release --debug",
"semantic-release-dry-run": "semantic-release --dry-run --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brucificus/vbs2js-runtime.git"
},
"author": "Bruce Markham, Rob Eberhardt",
"license": "ISC",
"bugs": {
"url": "https://github.com/brucificus/vbs2js-runtime/issues"
},
"homepage": "https://github.com/brucificus/vbs2js-runtime#readme",
"devDependencies": {
"@commitlint/core": "^19.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"commitlint-config-gitmoji": "^2.3.1",
"cz-gitmoji": "^0.0.7",
"eslint": "^9.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.13.0",
"husky": "^9.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"semantic-release": "^24.0.0",
"semantic-release-gitmoji": "^1.6.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-gitmoji"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}