-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "port-github-action",
"version": "1.1.1",
"private": true,
"main": "lib/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"dev": "ts-node-dev src/main.ts",
"all": "npm run build && npm run format && npm run lint && npm run package && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/port-labs/port-github-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "port-labs <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"axios": "^1.6.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@vercel/ncc": "^0.34.0",
"cross-env": "^7.0.3",
"eslint": "8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^2.8.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.5.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}