Files
configure-pages/package.json
T

33 lines
960 B
JSON
Raw Normal View History

2022-06-07 13:49:54 -05:00
{
2022-06-10 15:37:59 -07:00
"name": "configure-pages",
2022-06-07 13:49:54 -05:00
"version": "1.0.0",
2022-07-18 15:06:14 -07:00
"description": "An 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.",
2022-06-07 13:49:54 -05:00
"main": "src/index.js",
"scripts": {
2022-06-07 14:25:56 -05:00
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "jest"
2022-06-07 13:49:54 -05:00
},
"repository": {
"type": "git",
2022-06-10 15:37:59 -07:00
"url": "git+https://github.com/paper-spa/configure-pages.git"
2022-06-07 13:49:54 -05:00
},
"author": "GitHub",
"license": "MIT",
"bugs": {
2022-06-10 15:37:59 -07:00
"url": "https://github.com/paper-spa/configure-pages/issues"
2022-06-07 13:49:54 -05:00
},
2022-06-10 15:37:59 -07:00
"homepage": "https://github.com/paper-spa/configure-pages#readme",
2022-06-07 13:49:54 -05:00
"dependencies": {
"@actions/core": "^1.8.2",
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",
"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
}
}