mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/@gitbeaker/issues"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-lerna-changelog"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^5.0.0",
|
|
"@semantic-release/git": "^9.0.0",
|
|
"@types/jest": "^25.1.1",
|
|
"@typescript-eslint/eslint-plugin": "^2.18.0",
|
|
"@typescript-eslint/parser": "^2.18.0",
|
|
"codecov": "^3.6.4",
|
|
"cz-lerna-changelog": "^2.0.2",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb-base": "^14.0.0",
|
|
"eslint-config-prettier": "^6.10.0",
|
|
"eslint-plugin-import": "^2.20.0",
|
|
"eslint-plugin-jest": "^23.6.0",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"got": "^10.4.0",
|
|
"husky": "^4.2.1",
|
|
"jest": "^25.1.0",
|
|
"jest-extended": "^0.11.5",
|
|
"lerna": "^3.20.2",
|
|
"lint-staged": "^10.0.7",
|
|
"prettier": "^1.19.1",
|
|
"semantic-release": "^17.0.2",
|
|
"semantic-release-plus": "^18.0.0",
|
|
"ts-jest": "^25.1.0",
|
|
"typescript": "^3.7.5"
|
|
},
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "lerna run build",
|
|
"lint": "prettier --check 'packages/**/{src,test}/**/*.ts' && eslint 'packages/**/{src,test}/**/*/*.ts'",
|
|
"lint:doc": "prettier --check './*.json' './*.yml' './*.js'",
|
|
"lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md' './*.js'",
|
|
"lint:fix": "prettier --write 'packages/**/{src,test}/**/*.ts' && eslint 'packages/**/{src,test}/**/*/*.ts' --fix",
|
|
"test:integration": "jest test/integration",
|
|
"test:unit": "jest test/unit",
|
|
"commit": "npx git-cz",
|
|
"prepublishOnly": "lerna run build",
|
|
"release": "npx semantic-release"
|
|
}
|
|
}
|