-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "preferans-rating-js",
"version": "2.4.4",
"description": "nodejs rating for preferans",
"engines": {
"node": ">=16.0.0"
},
"main": "./lib/prefRating.js",
"types": "./lib/prefRating.d.ts",
"scripts": {
"all": "yarn & tsc & yarn clean & 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/transpile-only test/**/*.spec.ts",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"sonar": "sonarjs -e .sonarlint/**,node_modules/**,coverage/**,.nyc_output/**",
"up": "yarn upgrade-interactive",
"latest": "yarn upgrade-interactive --latest"
},
"files": [
"lib/**/*"
],
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"test/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/cope/preferans-rating-js.git"
},
"keywords": [
"rating",
"preferans",
"cards"
],
"author": "Predrag Stojadinovic",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/cope/preferans-rating-js/issues"
},
"homepage": "https://github.com/cope/preferans-rating-js#readme",
"dependencies": {
"@types/lodash": "^4.14.181",
"@types/mathjs": "^9.4.2",
"lodash": "^4.17.15",
"mathjs": "^10.4.3"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"sonarjs": "^1.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "^1.13.10",
"tslint-no-unused-expression-chai": "^0.1.4",
"typedoc": "^0.22.14",
"typescript": "^4.6.3"
}
}