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-08-05 15:28:22 -05:00
"format" : "prettier --write 'src/**/*.js'" ,
"format:check" : "prettier --check 'src/**/*.js'" ,
"prepare" : "npm run format && 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" : {
2022-08-18 19:59:15 +00:00
"@actions/core" : "^1.9.1" ,
2022-06-07 14:13:57 -05:00
"axios" : "^0.27.2" ,
2022-06-07 21:33:54 -07:00
"axios-retry" : "^3.2.5" ,
2022-06-16 14:28:43 -07:00
"espree" : "^9.3.2" ,
"string-format" : "^1.0.0"
2022-06-07 14:13:57 -05:00
} ,
"devDependencies" : {
2022-06-07 14:19:54 -05:00
"@vercel/ncc" : "^0.34.0" ,
2022-07-19 11:47:29 -07:00
"jest" : "^28.1.1" ,
"prettier" : "^2.7.1"
2022-06-07 13:49:54 -05:00
}
}