-
-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "wip",
"version": "0.0.0-development",
"private": true,
"description": "DO NOT MERGE – as a service.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node api/index.js",
"test": "tap test/**/*-test.js",
"posttest": "npm run lint",
"coverage-report": "npx tap report --coverage-report lcov",
"lint": "prettier --check '{lib,test}/**/*.{js,json,ts}' index.js *.md package.json",
"lint:fix": "prettier --write '{lib,test}/**/*.{js,json,ts}' index.js *.md package.json"
},
"repository": "https://github.com/wip/app",
"keywords": [
"github-app",
"octokit"
],
"author": "Gregor Martynus (https://github.com/gr2m)",
"license": "Apache-2.0",
"dependencies": {
"gemoji": "^8.1.0",
"js-yaml": "^4.1.1",
"octokit": "^5.0.5",
"pino": "^10.3.1"
},
"devDependencies": {
"@sinonjs/fake-timers": "^15.3.2",
"@vercel/node": "^5.7.11",
"lodash.clonedeep": "^4.5.0",
"nock": "^14.0.12",
"prettier": "^3.8.3",
"simple-mock": "^0.8.0",
"tap": "^21.7.1"
},
"engines": {
"node": "24.x"
}
}