mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 14:32:50 +00:00
feat: add minimal connector
This commit is contained in:
68
package.json
Normal file
68
package.json
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"name": "@openstapps/minimal-connector",
|
||||
"version": "0.0.1",
|
||||
"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",
|
||||
"compile": "tsc",
|
||||
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
||||
"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.0.1",
|
||||
"@openstapps/core": "0.0.2",
|
||||
"@openstapps/logger": "0.0.3",
|
||||
"promise-limit": "2.7.0",
|
||||
"typescript": "3.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@openstapps/configuration": "0.2.0",
|
||||
"@openstapps/core-validator": "0.0.1",
|
||||
"@types/chai": "4.1.5",
|
||||
"@types/mocha": "5.2.5",
|
||||
"@types/node": "10.10.1",
|
||||
"chai": "4.1.2",
|
||||
"conventional-changelog-cli": "2.0.11",
|
||||
"mocha": "5.2.0",
|
||||
"mocha-typescript": "1.1.17",
|
||||
"nyc": "13.1.0",
|
||||
"ts-node": "7.0.1",
|
||||
"tslint": "5.11.0",
|
||||
"typedoc": "0.13.0"
|
||||
},
|
||||
"nyc": {
|
||||
"check-coverage": true,
|
||||
"per-file": true,
|
||||
"lines": 0,
|
||||
"statements": 0,
|
||||
"functions": 0,
|
||||
"branches": 0,
|
||||
"include": [
|
||||
"src"
|
||||
],
|
||||
"extension": [
|
||||
".ts"
|
||||
],
|
||||
"reporter": [
|
||||
"html",
|
||||
"text-summary"
|
||||
],
|
||||
"sourceMap": true,
|
||||
"all": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user