-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "campsite-github-action",
"version": "1.0.0",
"description": "Create content in Campsite from your GitHub Actions workflow.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"local": "act public --eventpath .github/workflows/local/event.json --secret-file .github/workflows/local/.env --platform ubuntu-latest=node:20-buster",
"build": "npx @vercel/ncc build src/index.js --license licenses.txt",
"test": "npm run lint && jest",
"test:watch": "jest --watch"
},
"keywords": [
"campsite",
"github",
"action",
"workflow"
],
"author": "Campsite Software Co.",
"license": "MIT",
"bugs": {
"url": "https://github.com/campsite/campsite-github-action/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.2.0"
},
"homepage": "https://github.com/campsite/campsite-github-action#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/campsite/campsite-github-action.git"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"axios": "^0.21.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-unused-imports": "^3.2.0",
"jest": "^27.0.6"
}
}