generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 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
{
"name": "git-queue",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action that implements a job queue with a concurrency lock by using Git empty commits",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --fix '@(src|__tests__)/**/*.ts'",
"lint-check": "eslint '@(src|__tests__)/**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "yarn build && jest --coverage",
"test-unit": "jest --coverage --testPathPattern __tests__/unit/[a-z-]+.test.ts",
"test-e2e": "yarn build && jest --testPathPattern __tests__/e2e/[a-z-]+.test.ts",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nautilus-Cyberneering/git-queue.git"
},
"keywords": [
"actions",
"concurrency",
"git",
"lock"
],
"author": "Nautilus-Cyberneering",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"ajv": "^8.11.0",
"email-validator": "^2.0.4",
"simple-git": "^3.14.1"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^18.11.4",
"@typescript-eslint/parser": "^5.40.1",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.26.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"jest-circus": "^28.1.1",
"jest-fixtures": "^0.6.0",
"jest-runtime": "^28.1.1",
"js-yaml": "^4.1.0",
"openpgp": "^5.2.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.6.3",
"typescript-formatter": "^7.2.2"
}
}