This repository was archived by the owner on Jul 11, 2023. It is now read-only.
generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
42
43
44
45
46
47
48
{
"name": "sync-task-issues",
"version": "0.1.4",
"description": "Marks issues and PRs referenced from checkbox lists as completed",
"main": "dist/index.js",
"scripts": {
"lint": "eslint 'src/**.js' 'test/**.js' --fix",
"test": "eslint 'src/**.js' 'test/**.js' && jest",
"package": "ncc build src/main.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonabc/sync-task-issues.git"
},
"keywords": [
"GitHub",
"Issues",
"Pull Requests"
],
"author": "Jon Ruskin",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonabc/sync-task-issues/issues"
},
"homepage": "https://github.com/jonabc/sync-task-issues#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^2.1.1",
"@octokit/graphql": "^4.3.1"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^27.0.0",
"prettier": "^1.13.0",
"sinon": "^9.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run package && git add dist"
}
}
}