-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 996 Bytes
/
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
{
"name": "@pkgjs/meet",
"version": "0.0.19",
"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",
"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.10.0",
"@actions/github": "^2.1.1",
"@hackmd/api": "^1.1.1",
"ejs": "^3.1.8",
"luxon": "^1.28.1",
"safe-parse-list": "^0.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0",
"dotenv": "^8.2.0",
"mocha": "^7.1.1",
"semver": "^7.3.8",
"standard": "^17.1.0"
}
}