-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "depsbot",
"version": "0.8.0",
"description": "Check freshness of your deno dependencies",
"main": "lib/main.js",
"scripts": {
"clean": "rimraf lib && rimraf dist",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"test": "jest",
"all": "yarn clean && yarn format && yarn build && yarn lint && yarn package",
"check": "yarn test && yarn format-check && yarn lint"
},
"bin": {
"depsbot": "lib/bin/depsbot.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denosaurs/depsbot.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"@typescript-eslint/parser": "^4.0.1",
"@typescript-eslint/typescript-estree": "^4.0.1",
"axios": "^0.20.0",
"chalk": "^4.1.0",
"glob": "^7.1.6",
"semver": "^7.3.2",
"vfile": "^4.2.0",
"vfile-reporter": "^6.0.1",
"vfile-sort": "^2.2.2",
"typescript": "^4.0.2"
},
"devDependencies": {
"@types/eslint": "^7.2.2",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/semver": "^7.3.3",
"@vercel/ncc": "^0.24.0",
"eslint": "^7.8.1",
"eslint-plugin-github": "^4.0.1",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"jest-circus": "^26.1.0",
"js-yaml": "^3.13.1",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0"
}
}