-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "dependabot-clubhouse-actions",
"version": "1.0.0",
"description": "Automatically create a Clubhouse story for every Dependabot PR",
"repository": "https://github.com/movableink/dependabot-clubhouse-actions",
"author": "Alex LaFroscia <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "ncc build lib/index.ts",
"lint": "eslint . --ext .js,.ts",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/github": "^4.0.0",
"clubhouse-lib": "^0.12.0"
},
"devDependencies": {
"@movable/eslint-config": "^0.6.10",
"@movable/eslint-config-node": "^0.4.3",
"@movable/eslint-config-typescript": "^0.2.2",
"@movable/prettier-config": "^0.3.6",
"@types/jest": "^26.0.20",
"@zeit/ncc": "^0.20.5",
"eslint-plugin-jest": "^24.2.0",
"husky": "^4.0.1",
"jest": "^26.6.3",
"lint-staged": "^10.0.0-beta.14",
"nock": "^11.7.0",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"resolutions": {
"minimist": "^1.2.6"
},
"engines": {
"node": ">=12"
},
"prettier": "@movable/prettier-config",
"husky": {
"hooks": {
"pre-commit": "yarn build && git add dist/index.js && lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.json": "prettier --write"
},
"volta": {
"node": "12.21.0",
"yarn": "1.22.10"
}
}