-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "action-update-file",
"version": "1.8.0",
"private": true,
"author": "Alexey <[email protected]>",
"description": "Update (i.e. commit and push) files on GitHub",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/test-room-7/action-update-file.git"
},
"keywords": [
"actions",
"github"
],
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "4.0.0",
"@octokit/plugin-throttling": "3.3.1",
"fast-glob": "3.2.12"
},
"devDependencies": {
"@types/node": "14.11.8",
"@typescript-eslint/eslint-plugin": "4.4.1",
"@typescript-eslint/parser": "4.4.1",
"@vercel/ncc": "0.36.1",
"eslint": "7.11.0",
"eslint-config-web-scrobbler": "2.1.1",
"prettier": "2.1.2",
"prettier-config-web-scrobbler": "0.1.0",
"typescript": "4.0.3"
},
"scripts": {
"build": "tsc",
"dist": "tsc && ncc build build/main.js",
"lint": "eslint --ext .ts src",
"version": "npm run build && git add dist"
},
"eslintConfig": {
"extends": "web-scrobbler/typescript"
},
"prettier": "prettier-config-web-scrobbler"
}