-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.95 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
{
"name": "condorcet-winner",
"version": "1.0.0",
"author": "maxgfr",
"license": "MIT",
"description": "A simple condorcet vote algorithm implementation in typescript",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/maxgfr/condorcet-winner.git"
},
"bugs": {
"url": "https://github.com/maxgfr/condorcet-winner/issues"
},
"homepage": "https://github.com/maxgfr/condorcet-winner#readme",
"files": [
"build"
],
"keywords": [
"condorcet",
"winner",
"vote",
"algorithm",
"typescript"
],
"scripts": {
"start": "node build/index.js",
"dev": "nodemon",
"develop": "node -r @swc-node/register ./src/index.ts",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"clean": "rimraf build",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"build:swc": "swc ./src -d build",
"build:swc:watch": "swc ./src -d build -w",
"lint": "eslint ./src --ext .ts",
"prettier": "prettier --write './src/**/*.{ts,js,json}'",
"release": "semantic-release"
},
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^10.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.0",
"@semantic-release/npm": "^10.0.0",
"@semantic-release/release-notes-generator": "^11.0.0",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.5.2",
"@swc/core": "1.10.4",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/node": "18.19.69",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"jest": "29.7.0",
"nodemon": "3.1.9",
"prettier": "3.4.2",
"rimraf": "5.0.10",
"semantic-release": "21.1.2",
"typescript": "5.7.2"
}
}