forked from scala-steward-org/scala-steward-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "scala-steward-action",
"description": "A Github Action to launch Scala Steward in your repository",
"scripts": {
"build": "npm run build-main && npm run build-post",
"build-main": "ncc build --target es2019 src/main.ts && mv dist/index.js dist/main.js",
"build-post": "ncc build --target es2019 src/post.ts && mv dist/index.js dist/post.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"test": "xo && ava",
"all": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scala-steward-org/scala-steward-action.git"
},
"keywords": [
"actions",
"scala",
"dependency-update",
"scala-steward"
],
"author": "alejandrohdezma",
"license": "Apache-2.0",
"dependencies": {
"@actions/cache": "^3.0.4",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@types/node-fetch": "^2.6.1",
"jssha": "^3.2.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/node": "^18.7.23",
"@vercel/ncc": "^0.34.0",
"all-contributors-cli": "^6.22.0",
"ava": "^4.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"xo": "^0.52.3"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"new-cap": 0,
"ava/no-ignored-test-files": 0,
"n/file-extension-in-import": 0,
"node/prefer-global/process": 0,
"node/prefer-global/buffer": 0,
"import/extensions": 0,
"unicorn/prefer-node-protocol": 0
}
},
"ava": {
"files": [
"tests/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}