generated from xituru/typescript-package-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.4 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
{
"name": "@xituru/round-robin",
"version": "1.0.2",
"description": "A simple and fast round robin scheduler.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/index.js",
"author": "Eries Trisnadi <zdumb1885@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"npm",
"package",
"round-robin",
"scheduler",
"tournament",
"bracket",
"cjs",
"esm",
"umd"
],
"homepage": "https://github.com/xituru/round-robin",
"repository": {
"type": "git",
"url": "git@github.com:xituru/round-robin.git"
},
"bugs": {
"url": "https://github.com/xituru/round-robin/issues"
},
"scripts": {
"build": "run-p \"build:*\"",
"build:cjs": "del-cli dist/cjs && tsc -p internal/config/tsconfig.cjs.json",
"build:esm": "del-cli dist/esm && tsc -p internal/config/tsconfig.esm.json",
"build:umd": "del-cli dist/umd && webpack --config internal/webpack.config.js",
"build:types": "del-cli dist/types && tsc -p internal/config/tsconfig.types.json",
"coverage": "jest --coverage --no-cache --runInBand",
"lint": "tslint -p tsconfig.json",
"postinstall": "husky",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest --no-cache --runInBand"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.11.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"del-cli": "^6.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}