-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 914 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
38
39
{
"name": "action-labeler",
"author": "Doka.Team",
"license": "MIT",
"version": "1.0.0",
"description": "An action for automatically labelling pull requests",
"main": "src/main.js",
"scripts": {
"build": "ncc build src/main.js -o dist",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doka-guide/action-labeler.git"
},
"bugs": {
"url": "https://github.com/doka-guide/action-labeler/issues"
},
"homepage": "https://github.com/doka-guide/action-labeler#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@octokit/core": "^3.5.1",
"esm": "^3.2.25",
"front-matter": "^4.0.2",
"picomatch": "^2.3.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@vercel/ncc": "^0.32.0",
"ava": "^3.15.0",
"mock-fs": "^5.1.2"
},
"ava": {
"require": [
"esm"
]
}
}