Files
openstapps/package.json
Karl-Philipp Wulfert 207ed23478 0.2.0
2019-02-07 17:05:36 +01:00

74 lines
2.1 KiB
JSON

{
"name": "@openstapps/minimal-connector",
"version": "0.2.0",
"description": "This is a minimal connector which serves as an example",
"repository": {
"type": "git",
"url": "git@gitlab.com:openstapps/minimal-connector.git"
},
"license": "GPL-3.0-only",
"author": "Anselm Stordeur <anselmstordeur@gmail.com>",
"contributors": [
"Jovan Krunić <jovan.krunic@gmail.com>",
"Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
"Rainer Killinger <git@killinger.co>"
],
"main": "lib/cli.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run tslint && npm run compile && npm run documentation",
"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",
"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"
},
"devDependencies": {
"@openstapps/configuration": "0.5.1",
"@openstapps/core-tools": "0.3.0",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.5",
"@types/node": "10.12.18",
"chai": "4.2.0",
"conventional-changelog-cli": "2.0.11",
"mocha": "5.2.0",
"mocha-typescript": "1.1.17",
"nyc": "13.1.0",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"typedoc": "0.14.2"
},
"nyc": {
"all": true,
"branches": 95,
"check-coverage": true,
"exclude": [
"src/test/**/*.spec.ts",
"src/cli.ts"
],
"extension": [
".ts"
],
"functions": 95,
"include": [
"src"
],
"lines": 95,
"per-file": true,
"reporter": [
"html",
"text-summary"
],
"statements": 95
}
}