generated from skills/write-javascript-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (45 loc) · 1.25 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
{
"name": "setup-brisk",
"version": "1.0.0",
"description": "Setup Brisk is a Github Action to Install he brisk command and add it to the PATH",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.build.json",
"lint": "npx eslint src",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare-release" : "npm run build && npm run lint && npm run prettier-format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brisktest/setup-brisk.git"
},
"keywords": [
"Brisk",
"CICD",
"Testing",
"Rspec",
"Jest",
"Minitest"
],
"author": "Brisk Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/brisktest/setup-brisk/issues"
},
"homepage": "https://github.com/brisktest/setup-brisk#readme",
"devDependencies": {
"@types/node": "^18.11.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"typescript-eslint": "0.0.1-alpha.0"
}
}