-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "strapi-plugin-github-publish",
"version": "0.2.0",
"description": "A plugin to easily trigger GitHub Actions workflows from Strapi.",
"strapi": {
"name": "GitHub Publishing",
"icon": "plug",
"description": "Publish changes via GitHub Actions."
},
"dependencies": {},
"scripts": {
"lint": "NODE_ENV=test npm-run-all --parallel lint:*",
"lint:js": "eslint \"**/*.{js,jsx}\"",
"lint:format": "prettier \"**/*.{md,html,yaml,yml,json}\" --check",
"fix": "npm-run-all --sequential fix:*",
"fix:js": "eslint \"**/*.{js,jsx}\" --fix",
"fix:format": "prettier \"**/*.{md,html,yaml,yml,json}\" --write",
"depcheck": "npx npm-check --update"
},
"author": {
"name": "Phantom Studios Ltd.",
"email": "[email protected]",
"url": "https://www.phntms.com"
},
"maintainers": [
{
"name": "Phantom Studios Ltd.",
"email": "[email protected]",
"url": "https://www.phntms.com"
}
],
"engines": {
"node": ">=10.16.0 <=14.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}