mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 14:32:50 +00:00
refactor: provide common functions and abstraction
This commit is contained in:
49
package.json
49
package.json
@@ -11,41 +11,47 @@
|
||||
"contributors": [
|
||||
"Jovan Krunić <jovan.krunic@gmail.com>",
|
||||
"Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
||||
"Rainer Killinger <git@killinger.co>"
|
||||
"Rainer Killinger <git@killinger.co>",
|
||||
"Michel Jonathan Schmitz <michel.schmitz1992@gmail.com>"
|
||||
],
|
||||
"main": "lib/cli.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"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'",
|
||||
"check-configuration": "openstapps-configuration",
|
||||
"compile": "tsc",
|
||||
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
||||
"prepublishOnly": "npm run build",
|
||||
"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",
|
||||
"test": "nyc mocha --require ts-node/register --require source-map-support/register --ui mocha-typescript --recursive 'test/*.spec.ts'",
|
||||
"tslint": "tslint 'src/**/*.ts'"
|
||||
},
|
||||
"dependencies": {
|
||||
"@openstapps/api": "0.1.0",
|
||||
"@openstapps/core": "0.3.0",
|
||||
"@openstapps/logger": "0.0.5",
|
||||
"promise-limit": "2.7.0",
|
||||
"typescript": "3.2.2"
|
||||
"@openstapps/api": "0.7.0",
|
||||
"@openstapps/core": "0.17.0",
|
||||
"@openstapps/logger": "0.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@openstapps/configuration": "0.5.1",
|
||||
"@openstapps/core-tools": "0.3.0",
|
||||
"@openstapps/configuration": "0.14.0",
|
||||
"@openstapps/core-tools": "0.6.0",
|
||||
"@types/chai": "4.1.7",
|
||||
"@types/mocha": "5.2.5",
|
||||
"@types/node": "10.12.18",
|
||||
"@types/chai-as-promised": "7.1.0",
|
||||
"@types/mocha": "5.2.6",
|
||||
"@types/nock": "10.0.2",
|
||||
"@types/node": "12.0.0",
|
||||
"chai": "4.2.0",
|
||||
"conventional-changelog-cli": "2.0.11",
|
||||
"mocha": "5.2.0",
|
||||
"chai-as-promised": "7.1.1",
|
||||
"conventional-changelog-cli": "2.0.21",
|
||||
"mocha": "6.1.4",
|
||||
"mocha-typescript": "1.1.17",
|
||||
"nyc": "13.1.0",
|
||||
"ts-node": "8.0.2",
|
||||
"tslint": "5.12.1",
|
||||
"typedoc": "0.14.2"
|
||||
"nock": "10.0.6",
|
||||
"nyc": "14.1.1",
|
||||
"prepend-file-cli": "1.0.6",
|
||||
"rimraf": "2.6.3",
|
||||
"ts-node": "8.1.0",
|
||||
"tslint": "5.16.0",
|
||||
"typedoc": "0.14.2",
|
||||
"typescript": "3.4.5"
|
||||
},
|
||||
"nyc": {
|
||||
"all": true,
|
||||
@@ -69,5 +75,6 @@
|
||||
"text-summary"
|
||||
],
|
||||
"statements": 95
|
||||
}
|
||||
},
|
||||
"openstappsConfiguration": {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user