-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.29 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.29 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": "@pkgjs/meet",
"version": "1.0.1",
"description": "Make a meeting issue based on a schedule",
"main": "dist/index.js",
"type": "commonjs",
"author": "Wes Todd <wes@wesleytodd.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pkgjs/meet.git"
},
"scripts": {
"build": "npx @vercel/ncc build",
"test": "standard && mocha test/index.js",
"test:integration": "standard && mocha test/integration.js",
"test:integration:debug": "GITHUB_TOKEN=$(gh auth token) mocha --inspect --inspect-brk test/integration.js",
"test:integration-issues": "standard && mocha test/integration-issues.js",
"test:templates": "standard && mocha test/templates.js",
"lint:fix": "standard --fix",
"preversion": "npm t",
"postpublish": "git push origin && git push origin --tags",
"prepare": "ncc --source-map build run.js -o dist"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@hackmd/api": "^2.5.0",
"@js-temporal/polyfill": "^0.5.1",
"ejs": "^3.1.10",
"safe-parse-list": "^0.1.1"
},
"devDependencies": {
"@octokit/rest": "^22.0.0",
"@vercel/ncc": "^0.38.3",
"dotenv": "^17.2.1",
"mocha": "^11.7.1",
"semver": "^7.7.2",
"standard": "^17.1.2"
}
}