forked from JamesSingleton/is-organization-member
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 880 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
{
"name": "is-organization-member",
"version": "1.0.1",
"private": true,
"description": "Check is a user is a member of an organization.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"build": "ncc build src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesSingleton/is-organization-member.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Organization Member"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/JamesSingleton/is-organization-member/issues"
},
"homepage": "https://github.com/JamesSingleton/is-organization-member#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.32.0",
"jest": "^26.6.3"
}
}