-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.67 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.67 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@netlify/submit-build-plugin-action",
"private": true,
"version": "1.1.7",
"description": "A GitHub action to submit a Netlify Build Plugin to the plugins directory",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/ && npm run build",
"build": "tsc",
"dev": "ts-node src/bin.ts",
"test": "run-s format test:dev",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "run-e format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier",
"test:dev": "run-s test:dev:*",
"test:ci": "run-s test:ci:*",
"test:dev:ava": "ava",
"test:ci:ava": "nyc -r lcovonly -r text -r json ava"
},
"config": {
"eslint": "--ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"{src,scripts,.github}/**/*.{js,ts,md,html}\" \"*.{js,ts,md,html}\" \".*.{js,ts,md,html}\"",
"prettier": "--ignore-path .gitignore --loglevel=warn \"{src,scripts,.github}/**/*.{js,ts,md,yml,json,html}\" \"*.{js,ts,yml,json,html}\" \".*.{js,ts,yml,json,html}\" \"!**/package-lock.json\" \"!package-lock.json\""
},
"ava": {
"verbose": true,
"timeout": "3m",
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"keywords": [],
"license": "MIT",
"repository": "netlify/submit-build-plugin-action",
"bugs": {
"url": "https://github.com/netlify/submit-build-plugin-action/issues"
},
"author": "Netlify Inc.",
"directories": {
"test": "test"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@netlify/eslint-config-node": "^6.0.0",
"@types/js-yaml": "^4.0.5",
"@types/pacote": "^11.1.3",
"@types/sinon": "^10.0.8",
"ava": "^4.0.0",
"husky": "^7.0.4",
"nyc": "^15.0.0",
"sinon": "^13.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@octokit/graphql-schema": "^10.73.0",
"node-fetch": "^2.6.7",
"octokit-plugin-create-pull-request": "^3.10.0",
"p-wait-for": "^3.0.0",
"pacote": "^13.0.0",
"read-pkg": "^5.0.0"
}
}