preferans-score-js
Version:
nodejs score for preferans
86 lines (85 loc) • 2.19 kB
JSON
{
"name": "preferans-score-js",
"version": "1.5.4",
"description": "nodejs score for preferans",
"engines": {
"node": ">=14.4.0"
},
"main": "./lib/prefScore.js",
"types": "./lib/prefScore.d.ts",
"scripts": {
"all": "yarn & tsc & yarn clean & yarn format & yarn build & yarn test & yarn docs",
"build": "del /S /Q lib\\* && tsc",
"build:watch": "tsc --watch",
"lint": "tslint -p tsconfig.json",
"clean": "tslint --config tslint-imports.json --fix --project .",
"format": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc --readme none --out docs src",
"test": "nyc mocha -r ts-node/register test/**/*.spec.ts",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"sonar": "sonarjs -e .sonarlint/**,node_modules/**,coverage/**,.nyc_output/**",
"latest-interactive": "yarn upgrade-interactive --latest",
"latest": "yarn upgrade --latest"
},
"files": [
"lib/**/*"
],
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"test/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/cope/preferans-score-js.git"
},
"keywords": [
"score",
"preferans",
"cards"
],
"author": "Predrag Stojadinovic",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/cope/preferans-score-js/issues"
},
"homepage": "https://github.com/cope/preferans-score-js#readme",
"dependencies": {
"@types/lodash": "^4.14.149",
"lodash": "^4.17.15",
"preferans-paper-js": "3.1.3"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^8.2.1",
"chai": "^4.1.2",
"coveralls": "^3.0.9",
"mocha": "^8.3.0",
"nyc": "^15.0.0",
"prettier": "^2.2.1",
"sonarjs": "^1.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "^1.10.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typedoc": "^0.20.27",
"typescript": "^4.1.5"
}
}