-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "actions-app-deploy",
"private": true,
"version": "1.0.0",
"author": "Contentful GmbH",
"license": "MIT",
"description": "Custom GitHub Action to deploy frontend apps to Contentful.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf build && rimraf dist && tsc && ncc build ./build/index.js --license licenses.txt",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/actions-app-deploy.git"
},
"keywords": [
"github",
"action",
"Contentful",
"app deploy"
],
"bugs": {
"url": "https://github.com/contentful/action-publish-apps-contentful/issues"
},
"homepage": "https://github.com/contentful/action-publish-apps-contentful#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@contentful/app-scripts": "1.5.1",
"analytics-node": "6.2.0"
},
"devDependencies": {
"@tsconfig/node20": "20.1.2",
"@types/analytics-node": "3.1.10",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@vercel/ncc": "0.34.0",
"eslint": "8.57.0",
"husky": "8.0.2",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"typescript": "5.4.3"
}
}