mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
37 lines
789 B
JSON
37 lines
789 B
JSON
{
|
|
"name": "frameworks-core",
|
|
"version": "0.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"lint": "eslint",
|
|
"lint:fix": "eslint --fix",
|
|
"prettier": "prettier -c .",
|
|
"prettier:fix": "prettier -w .",
|
|
"test": "npm run test:unit -w @serverlessinc/sf-core -w @serverless/framework",
|
|
"setup-dev-mode": "bash setup-dev-for-dev-mode.sh",
|
|
"prepare": "husky"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"release-scripts"
|
|
],
|
|
"author": "Serverless Inc.",
|
|
"license": "",
|
|
"devDependencies": {
|
|
"eslint": "^9.39.2",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.2.7",
|
|
"prettier": "^3.8.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,tsx,jsx}": [
|
|
"prettier -w"
|
|
]
|
|
},
|
|
"overrides": {
|
|
"help-me": "^5.0.0"
|
|
}
|
|
}
|