Files
configure-pages/package.json

40 lines
1.3 KiB
JSON
Raw Permalink Normal View History

{
"private": true,
2022-06-10 15:37:59 -07:00
"name": "configure-pages",
"version": "1.0.0",
"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",
"scripts": {
"all": "npm run format && npm run lint && npm run prepare && npm run test",
"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 .",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
2022-06-07 14:25:56 -05:00
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/configure-pages.git"
},
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/configure-pages/issues"
},
"homepage": "https://github.com/actions/configure-pages#readme",
"dependencies": {
2022-10-06 11:08:55 +01:00
"@actions/core": "^1.10.0",
2022-06-07 14:13:57 -05:00
"axios": "^0.27.2",
2022-09-16 23:20:01 -05:00
"espree": "^9.3.2"
2022-06-07 14:13:57 -05:00
},
"devDependencies": {
2022-06-07 14:19:54 -05:00
"@vercel/ncc": "^0.34.0",
2022-09-16 20:47:23 -05:00
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.3.7",
2022-07-19 11:47:29 -07:00
"jest": "^28.1.1",
"prettier": "^2.7.1"
}
}