-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "android-version-bump",
"version": "1.1.15",
"private": false,
"description": "GitHub action for bumping Android repos using semantic releases.",
"main": "lib/main.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"clean": "rimraf lib dist",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"prepare": "husky install",
"test": "jest",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit --project tsconfig.json",
"deps:update": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oflynned/android-version-bump.git"
},
"keywords": [
"android",
"semantic",
"version",
"release"
],
"author": "Edmond Ó Floinn <[email protected]>",
"license": "MIT",
"dependencies": {
"@octokit/core": "4.2.4",
"actions-toolkit": "6.0.1"
},
"devDependencies": {
"@types/jest": "29.5.2",
"@types/node": "18.16.18",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"@vercel/ncc": "0.36.1",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-github": "4.8.0",
"eslint-plugin-jest": "27.2.2",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-circus": "29.5.0",
"jest-mock-extended": "3.0.4",
"js-yaml": "4.1.0",
"lint-staged": "13.2.2",
"npm-check-updates": "16.10.13",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "3.2.2",
"rimraf": "5.0.1",
"ts-jest": "29.1.0",
"typescript": "5.1.3"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=14",
"npm": ">=6",
"yarn": "please-use-npm"
}
}