mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-10 19:52:53 +00:00
refactor: move to current project setup standards
This commit is contained in:
36
package.json
36
package.json
@@ -7,12 +7,12 @@
|
||||
"url": "git@gitlab.com:openstapps/gitlab-api.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run tslint && npm run compile",
|
||||
"build": "npm run lint && npm run compile",
|
||||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
|
||||
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
|
||||
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
|
||||
"prepublishOnly": "npm ci && npm run build",
|
||||
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'",
|
||||
"documentation": "typedoc --out docs --readme README.md --listInvalidSymbolLinks --entryPointStrategy expand src",
|
||||
"prepublishOnly": "npm ci && npm run build && npm run test",
|
||||
"lint": "eslint --ext .ts src/",
|
||||
"check-configuration": "openstapps-configuration",
|
||||
"postversion": "npm run changelog",
|
||||
"preversion": "npm run prepublishOnly",
|
||||
@@ -20,28 +20,36 @@
|
||||
},
|
||||
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
||||
"contributors": [
|
||||
"Rainer Killinger"
|
||||
"Rainer Killinger <openstapps@killinger.co>"
|
||||
],
|
||||
"license": "GPL-3.0-only",
|
||||
"dependencies": {
|
||||
"@krlwlfrt/async-pool": "0.4.1",
|
||||
"@openstapps/logger": "0.7.0",
|
||||
"@types/node": "14.17.19",
|
||||
"@types/request": "2.48.7",
|
||||
"@openstapps/logger": "1.1.1",
|
||||
"@types/node": "14.18.33",
|
||||
"@types/request": "2.48.8",
|
||||
"@types/request-promise-native": "1.0.18",
|
||||
"commander": "6.2.1",
|
||||
"request": "2.88.2",
|
||||
"request-promise-native": "1.0.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@openstapps/configuration": "0.28.1",
|
||||
"conventional-changelog-cli": "2.1.1",
|
||||
"@openstapps/configuration": "0.33.0",
|
||||
"@openstapps/eslint-config": "1.1.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.43.0",
|
||||
"@typescript-eslint/parser": "5.43.0",
|
||||
"conventional-changelog-cli": "2.2.2",
|
||||
"eslint": "8.28.0",
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
"eslint-plugin-jsdoc": "39.6.2",
|
||||
"eslint-plugin-prettier": "4.2.1",
|
||||
"eslint-plugin-unicorn": "45.0.0",
|
||||
"prepend-file-cli": "1.0.6",
|
||||
"prettier": "2.7.1",
|
||||
"rimraf": "3.0.2",
|
||||
"ts-node": "9.1.1",
|
||||
"tslint": "6.1.3",
|
||||
"typedoc": "0.22.4",
|
||||
"typescript": "3.9.10"
|
||||
"ts-node": "10.9.1",
|
||||
"typedoc": "0.22.18",
|
||||
"typescript": "4.4.4"
|
||||
},
|
||||
"main": "lib/api.js",
|
||||
"types": "lib/api.d.ts",
|
||||
|
||||
Reference in New Issue
Block a user