forked from scala-steward-org/scala-steward-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.81 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
{
"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.0",
"@actions/core": "^1.9.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@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": "^17.0.38",
"@vercel/ncc": "^0.34.0",
"all-contributors-cli": "^6.20.0",
"ava": "^4.3.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"xo": "^0.49.0"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"new-cap": 0,
"ava/no-ignored-test-files": 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"
]
}
}