forked from kenchan0130/actions-system-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
57
{
"name": "system-info-action",
"version": "1.3.0",
"description": "A GitHub Action to get information about runner OS system",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf dist/",
"lint": "eslint --ext .ts,.js --max-warnings=0 src/**/*",
"lint:fix": "eslint --ext .ts,.js --fix src/**/*",
"package": "npm run clean && npm run build && ncc build -o lib/ --license LICENSE -m -s",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ynab/system-info-action.git"
},
"keywords": [
"github",
"action",
"os",
"kernel",
"macos",
"windows",
"linux"
],
"author": "Tadayuki Onishi",
"license": "MIT",
"homepage": "https://github.com/ynab/system-info-action",
"devDependencies": {
"@types/getos": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@vercel/ncc": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-simple-import-sort": "latest",
"jest": "latest",
"prettier": "latest",
"rimraf": "latest",
"ts-jest": "latest",
"typescript": "latest"
},
"dependencies": {
"@actions/core": "latest",
"getos": "latest",
"win-version": "latest",
"windows-release": "latest"
},
"jest": {
"preset": "ts-jest"
}
}