Files
openstapps/package.json
Karl-Philipp Wulfert 3220739ae4 0.11.0
2019-07-12 15:47:42 +02:00

104 lines
2.9 KiB
JSON

{
"name": "@openstapps/api",
"version": "0.11.0",
"scripts": {
"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": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
"postversion": "npm run changelog",
"prepublishOnly": "npm ci && npm run build",
"preversion": "npm run prepublishOnly",
"push": "git push && git push origin \"v$npm_package_version\"",
"test": "nyc mocha --ui mocha-typescript 'test/*.spec.ts'",
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
},
"description": "Node.js library to interact with the StApps backend service",
"dependencies": {
"@krlwlfrt/async-pool": "0.1.0",
"@openstapps/core": "0.23.0",
"@openstapps/logger": "0.4.0",
"@types/cli-progress": "1.8.1",
"@types/node": "10.14.12",
"@types/request": "2.48.1",
"@types/traverse": "0.6.32",
"@types/uuid": "3.4.5",
"cli-progress": "2.1.1",
"commander": "2.20.0",
"moment": "2.24.0",
"request": "2.88.0",
"traverse": "0.6.6",
"uuid": "3.3.2"
},
"license": "GPL-3.0-only",
"devDependencies": {
"@openstapps/configuration": "0.21.0",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/chai-spies": "1.0.0",
"@types/mocha": "5.2.7",
"@types/nock": "10.0.3",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-spies": "1.0.0",
"conventional-changelog-cli": "2.0.21",
"mocha": "6.1.4",
"mocha-typescript": "1.1.17",
"nock": "10.0.6",
"nyc": "14.1.1",
"prepend-file-cli": "1.0.6",
"rimraf": "2.6.3",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"typedoc": "0.14.2",
"typescript": "3.5.3"
},
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
"contributors": [
"André Michael Thomas Bierlein",
"Anselm Stordeur <anselmstordeur@gmail.com>",
"Jovan Krunić <jovan.krunic@gmail.com>",
"Michel Jonathan Schmitz",
"Rainer Killinger",
"Roman Klopsch"
],
"peerDependencies": {
"@openstapps/core": "~0.23.0"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:openstapps/api.git"
},
"bin": {
"openstapps-api": "./lib/cli.js"
},
"main": "lib/client.js",
"typings": "lib/index.d.ts",
"nyc": {
"all": true,
"branches": 95,
"check-coverage": true,
"exclude": [
"src/cli.ts"
],
"extension": [
".ts"
],
"functions": 95,
"include": [
"src"
],
"lines": 95,
"per-file": true,
"reporter": [
"html",
"text-summary"
],
"require": [
"ts-node/register"
],
"statements": 95
}
}