mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-10 03:32:52 +00:00
build: update dependencies and configuration files
This commit is contained in:
38
package.json
38
package.json
@@ -7,31 +7,37 @@
|
||||
"url": "git@gitlab.com:openstapps/gitlab-api.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run tslint && npm run compile && npm run documentation",
|
||||
"build": "npm run tslint && 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": "tsc && sed -i '1i#!/usr/bin/env node' lib/cli.js",
|
||||
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
||||
"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 'src/**/*.ts'",
|
||||
"check-configuration": "openstapps-configuration"
|
||||
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'",
|
||||
"check-configuration": "openstapps-configuration",
|
||||
"postversion": "npm run changelog",
|
||||
"preversion": "npm run prepublishOnly",
|
||||
"push": "git push && git push origin \"v$npm_package_version\""
|
||||
},
|
||||
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
||||
"license": "GPL-3.0-only",
|
||||
"dependencies": {
|
||||
"@openstapps/logger": "0.0.5",
|
||||
"@types/request": "2.48.1",
|
||||
"@types/request-promise-native": "1.0.15",
|
||||
"commander": "2.19.0",
|
||||
"@openstapps/logger": "0.4.0",
|
||||
"@types/node": "10.17.5",
|
||||
"@types/request": "2.48.3",
|
||||
"@types/request-promise-native": "1.0.17",
|
||||
"commander": "4.0.1",
|
||||
"request": "2.88.0",
|
||||
"request-promise-native": "1.0.7"
|
||||
"request-promise-native": "1.0.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@openstapps/configuration": "0.6.0",
|
||||
"@types/node": "10.12.27",
|
||||
"conventional-changelog-cli": "=2.0.12",
|
||||
"ts-node": "8.0.2",
|
||||
"typedoc": "0.14.2",
|
||||
"typescript": "3.3.3333"
|
||||
"@openstapps/configuration": "0.21.1",
|
||||
"conventional-changelog-cli": "2.0.28",
|
||||
"prepend-file-cli": "1.0.6",
|
||||
"rimraf": "3.0.0",
|
||||
"ts-node": "8.5.2",
|
||||
"tslint": "5.20.1",
|
||||
"typedoc": "0.15.2",
|
||||
"typescript": "3.7.2"
|
||||
},
|
||||
"main": "lib/api.js",
|
||||
"types": "lib/api.d.ts",
|
||||
|
||||
Reference in New Issue
Block a user