-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.96 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
{
"name": "@tediousjs/setup-sqlserver",
"version": "2.1.1",
"description": "A GitHub action for installing SQL Server",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/main.ts --out lib/main --minify",
"docs": "ts-node misc/generate-docs.ts",
"postbuild": "npm run docs",
"lint": "eslint --config ./.eslintrc.json ./src ./misc ./test",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build",
"test": "mocha -r ts-node/register './test/**/**.ts'",
"test:coverage": "nyc --all npm run test --silent"
},
"files": [
"action.yml",
"lib/"
],
"author": "",
"license": "ISC",
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^4.3.5",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.6",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vercel/ncc": "^0.38.3",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"js-yaml": "^4.1.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"@actions/http-client": "^2.2.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
}
}