generated from cds-snc/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.79 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
{
"name": "backstage-catalog-info-helper-action",
"version": "0.3.0",
"description": "This repository contains a GitHub Action that helps you to generate a catalog-info.yaml file for your Backstage catalog.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cds-snc/backstage-catalog-info-helper-action.git"
},
"bugs": {
"url": "https://github.com/cds-snc/backstage-catalog-info-helper-action/issues"
},
"scripts": {
"build": "ncc build src/index.js --source-map --license licenses.txt",
"build-test": "ncc build src/index.js --source-map --license licenses.txt -o dist-test",
"ci-test": "jest --coverage",
"debug": "node debug/debug.js",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"lint": "eslint src",
"test": "(jest --coverage && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg",
"pre-commit": "npm run format:write && npm run build",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/auth-app": "^6.0.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@octokit/rest": "^20.0.2",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-when": "^3.6.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.0.3"
},
"jest": {
"coverageReporters": [
"json-summary"
]
}
}