mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-09 11:12:52 +00:00
feat: modernize core-tools
This commit is contained in:
42
package.json
42
package.json
@@ -28,7 +28,7 @@
|
||||
"Wieland Schöbl"
|
||||
],
|
||||
"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'",
|
||||
"check-configuration": "openstapps-configuration",
|
||||
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
|
||||
@@ -41,48 +41,56 @@
|
||||
"preversion": "npm run prepublishOnly",
|
||||
"push": "git push && git push origin \"v$npm_package_version\"",
|
||||
"test": "mocha --require ts-node/register test/*.spec.ts",
|
||||
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
|
||||
"lint:fix": "eslint --fix -c .eslintrc.json --ignore-path .eslintignore --ext .ts src/",
|
||||
"lint": "eslint -c .eslintrc.json --ignore-path .eslintignore --ext .ts src/"
|
||||
},
|
||||
"dependencies": {
|
||||
"@krlwlfrt/async-pool": "0.6.0",
|
||||
"@openstapps/logger": "0.7.0",
|
||||
"@types/fs-extra": "9.0.12",
|
||||
"@types/glob": "7.1.4",
|
||||
"@types/json-schema": "7.0.8",
|
||||
"@types/mustache": "4.1.2",
|
||||
"@types/node": "14.17.5",
|
||||
"ajv": "6.12.6",
|
||||
"better-ajv-errors": "0.7.0",
|
||||
"chai": "4.3.4",
|
||||
"commander": "7.2.0",
|
||||
"commander": "8.1.0",
|
||||
"deepmerge": "4.2.2",
|
||||
"del": "6.0.0",
|
||||
"flatted": "3.2.1",
|
||||
"eslint": "7.30.0",
|
||||
"flatted": "3.2.2",
|
||||
"fs-extra": "10.0.0",
|
||||
"glob": "7.1.7",
|
||||
"got": "11.8.2",
|
||||
"humanize-string": "2.1.0",
|
||||
"json-schema": "0.3.0",
|
||||
"lodash": "4.17.21",
|
||||
"mustache": "4.2.0",
|
||||
"openapi-types": "9.1.0",
|
||||
"plantuml-encoder": "1.4.0",
|
||||
"toposort": "2.0.2",
|
||||
"ts-json-schema-generator": "0.70.2",
|
||||
"ts-node": "10.1.0",
|
||||
"typedoc": "0.18.0",
|
||||
"typescript": "3.8.3"
|
||||
"ts-json-schema-generator": "0.95.0",
|
||||
"ts-node": "10.2.0",
|
||||
"typescript": "4.3.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@openstapps/configuration": "0.27.0",
|
||||
"@testdeck/mocha": "0.1.2",
|
||||
"@types/chai": "4.2.21",
|
||||
"@types/fs-extra": "9.0.12",
|
||||
"@types/glob": "7.1.4",
|
||||
"@types/json-schema": "7.0.9",
|
||||
"@types/lodash": "4.14.172",
|
||||
"@types/mocha": "8.2.3",
|
||||
"@types/mustache": "4.1.2",
|
||||
"@types/node": "14.17.9",
|
||||
"@types/rimraf": "3.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "4.3.0",
|
||||
"@typescript-eslint/parser": "4.3.0",
|
||||
"conventional-changelog-cli": "2.1.1",
|
||||
"mocha": "9.0.2",
|
||||
"eslint-config-prettier": "8.3.0",
|
||||
"eslint-plugin-jsdoc": "35.4.1",
|
||||
"eslint-plugin-prettier": "3.4.0",
|
||||
"eslint-plugin-unicorn": "34.0.1",
|
||||
"mocha": "9.0.3",
|
||||
"nock": "13.1.1",
|
||||
"prepend-file-cli": "1.0.6",
|
||||
"rimraf": "3.0.2",
|
||||
"tslint": "6.1.3"
|
||||
"prettier": "2.3.2",
|
||||
"rimraf": "3.0.2"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user