generated from cds-snc/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.51 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
{
"name": "github-repository-metadata-exporter",
"version": "1.0.0",
"description": "This repository provides some base files for setting up a repository at CDS. Plan is to create more project template for specific technologies:",
"main": "index.js",
"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",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"lint": "eslint src",
"prepare": "husky install",
"pre-commit": "npm run format:write && npm run build",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cds-snc/github-repository-metadata-exporter.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cds-snc/github-repository-metadata-exporter/issues"
},
"homepage": "https://github.com/cds-snc/github-repository-metadata-exporter#readme",
"devDependencies": {
"@vercel/ncc": "0.38.3",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-security": "1.7.1",
"husky": "8.0.3",
"jest": "^29.3.1",
"jest-when": "^3.7.0",
"prettier": "2.8.8"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"@octokit/auth-app": "^4.0.7",
"superagent": "^8.0.5"
},
"overrides": {
"@actions/github": {
"@octokit/plugin-rest-endpoint-methods": "^6.7.0"
}
}
}