This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
54 lines (54 loc) · 1.39 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "setup-atom",
"version": "3.0.8",
"description": "Setup Atom and APM",
"main": "./src/setup-atom.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint .",
"build": "ncc build src/action.js --license license.txt",
"prepare": "husky install"
},
"bin": "./src/bin.js",
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/UziTech/action-setup-atom.git"
},
"keywords": [
"GitHub",
"Actions",
"action",
"setup",
"atom",
"apm"
],
"author": "Tony Brix <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/UziTech/action-setup-atom/issues"
},
"homepage": "https://github.com/UziTech/action-setup-atom#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^19.0.7"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.38.0",
"husky": "^8.0.3",
"semantic-release": "^21.0.1"
}
}