2022-06-07 13:49:54 -05:00
{
2022-08-03 18:24:31 -05:00
"private" : true ,
2022-06-10 15:37:59 -07:00
"name" : "configure-pages" ,
2022-06-07 13:49:54 -05:00
"version" : "1.0.0" ,
2022-08-03 18:24:31 -05:00
"description" : "A GitHub Action to enable Pages and extract various metadata about a site. It can also be used to configure various static site generators we support as starter workflows." ,
"main" : "./dist/index.js" ,
2022-06-07 13:49:54 -05:00
"scripts" : {
2022-09-16 22:54:24 -05:00
"all" : "npm run format && npm run lint && npm run prepare && npm run test" ,
2022-09-16 20:35:47 -05:00
"format" : "prettier --write ." ,
"format:check" : "prettier --check ." ,
2022-09-16 21:48:52 -05:00
"lint" : "DEBUG=eslint:cli-engine eslint --fix ." ,
"lint:check" : "DEBUG=eslint:cli-engine eslint ." ,
2022-09-16 22:54:24 -05:00
"prepare" : "ncc build src/index.js -o dist --source-map --license licenses.txt" ,
2022-06-07 14:25:56 -05:00
"test" : "jest"
2022-06-07 13:49:54 -05:00
} ,
"repository" : {
"type" : "git" ,
2022-08-03 18:24:31 -05:00
"url" : "git+https://github.com/actions/configure-pages.git"
2022-06-07 13:49:54 -05:00
} ,
"author" : "GitHub" ,
"license" : "MIT" ,
"bugs" : {
2022-08-03 18:24:31 -05:00
"url" : "https://github.com/actions/configure-pages/issues"
2022-06-07 13:49:54 -05:00
} ,
2022-08-03 18:24:31 -05:00
"homepage" : "https://github.com/actions/configure-pages#readme" ,
2022-06-07 13:49:54 -05:00
"dependencies" : {
2024-01-31 17:27:33 +00:00
"@actions/core" : "^1.10.1" ,
2024-03-27 21:05:00 +00:00
"@actions/github" : "^6.0.0" ,
2024-03-27 22:29:17 -05:00
"error-stack-parser" : "^2.1.4" ,
2024-07-18 16:56:37 +00:00
"espree" : "^10.1.0"
2022-06-07 14:13:57 -05:00
} ,
"devDependencies" : {
2024-03-28 14:55:36 -05:00
"@octokit/request-error" : "^5.0.1" ,
2024-01-31 17:27:33 +00:00
"@vercel/ncc" : "^0.38.1" ,
2024-03-27 20:38:37 +00:00
"eslint" : "^8.57.0" ,
2024-07-18 16:56:36 +00:00
"eslint-config-prettier" : "^9.1.0" ,
2024-06-10 10:26:04 +00:00
"eslint-plugin-github" : "^5.0.1" ,
2023-12-04 16:35:01 +00:00
"jest" : "^29.7.0" ,
2023-04-16 14:19:11 +00:00
"prettier" : "^2.8.7"
2022-06-07 13:49:54 -05:00
}
}