-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
55
56
{
"name": "fslabscli-action",
"version": "1.0.0",
"description": "* [Usage](#usage) * [Workflow](#workflow) * [License](#license)",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForesightMiningSoftwareCorporation/fslabscli-action.git"
},
"keywords": [],
"author": "loispostula",
"license": "ISC",
"bugs": {
"url": "https://github.com/ForesightMiningSoftwareCorporation/fslabscli-action/issues"
},
"jest": {
"verbose": true,
"modulePaths": [
"<rootDir>"
],
"transform": {},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
},
"type": "module",
"homepage": "https://github.com/ForesightMiningSoftwareCorporation/fslabscli-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.5",
"@vercel/ncc": "^0.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^48.0.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0"
}
}