This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
56 lines (56 loc) · 1.7 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
{
"private": false,
"name": "@actions-rs/core",
"version": "0.1.6",
"author": "actions-rs",
"license": "MIT",
"description": "Core functionality for the @actions-rs repos",
"main": "dist/core.js",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc -p .",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"lint": "tsc --noEmit && eslint 'src/**/*.ts' '__tests__/**/*.ts'",
"refresh": "rm -rf ./dist/* && npm run build",
"test": "jest -c jest.config.json",
"watch": "tsc -p . -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-rs/core.git"
},
"bugs": {
"url": "https://github.com/actions-rs/core/issues"
},
"dependencies": {
"@actions/cache": "^1.0.4",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"@octokit/graphql": "^4.5.7",
"@octokit/rest": "^18.0.9",
"semver": "^7.3.2"
},
"devDependencies": {
"npm-check-updates": "^10.2.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}