This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.24 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
75
76
77
78
79
80
81
82
83
84
{
"version": "1.5.5",
"name": "@telus/colophon-app",
"description": "Telus' Fork standarized project metadata to specify the components, constructs and authorship of software",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com)",
"homepage": "https://colophon.telus.digital",
"repository": {
"type": "git",
"url": "https://github.com/telus/telus-colophon-app.git"
},
"bin": {
"colophon": "index.js"
},
"license": "MIT",
"main": "app.js",
"keywords": [
"colophon",
"app"
],
"engines": {
"node": ">=12"
},
"files": [
"app.js",
"database",
"index.js",
"lib",
"assets",
"routes",
"views"
],
"bugs": {
"url": "https://github.com/telus/telus-colophon-app/issues"
},
"scripts": {
"dev": "nodemon",
"start": "node index.js",
"lint:audit": "npx audit-ci --config .audit-ci.json",
"lint:ec": "npx editorconfig-checker -v",
"lint:md": "npx remark-cli --quiet --frail .",
"lint": "telus-standard --verbose",
"lint:fix": "telus-standard --verbose --fix",
"release:dryrun": "npx semantic-release --dry-run --branch $(git describe --contains --all HEAD)",
"release": "npx semantic-release",
"open:coverage": "opener coverage/lcov-report/index.html",
"test": "tap test --100 --coverage-report=lcov --no-browser"
},
"dependencies": {
"@octokit/app": "^4.3.0",
"@octokit/graphql": "^4.5.7",
"@octokit/rest": "^18.0.8",
"@octokit/webhooks": "^6.3.2",
"@telus/colophon-schema": "^3.0.1",
"body-parser": "^1.19.0",
"connect-pg-simple": "^6.2.1",
"cookie-parser": "^1.4.4",
"dayjs": "^1.9.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"oh-my-log": "^5.0.1",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"pg": "^7.18.2",
"pug": "^2.0.4",
"tabler-ui": "^0.0.34",
"tap": "^14.6.9",
"uncaught-extender": "^1.0.1",
"yargs": "^14.2.3"
},
"devDependencies": {
"@telus/remark-config": "^1.0.2",
"@telus/semantic-release-config": "^1.0.8",
"@telus/telus-standard": "^2.0.3",
"audit-ci": "^3.1.1",
"nodemon": "^2.0.6"
},
"telus-standard": {
"ignore": [
"dist",
"server-dist"
]
}
}