-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.83 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
{
"name": "@abstractplay/recranks",
"version": "1.0.0-beta",
"description": "The Records and Rankings module of Abstract Play",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "npm run build-ts && npm run lint",
"build-ts": "tsc",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"lint": "npx eslint \"src/**/*.ts\" -c .eslintrc.js",
"dist-dev": "webpack",
"dist-prod": "webpack --mode=production",
"full-dev": "npm run test && npm run build && npm run dist-dev",
"full-prod": "npm run test && npm run build && npm run dist-prod",
"json2ts": "npx json2ts -i src/schemas/gamerecord.json -o src/schemas/gamerecord.d.ts "
},
"repository": {
"type": "git",
"url": "AbstractPlay/recranks"
},
"author": "Aaron Dalton <aaron@daltons.ca> (https://www.perlkonig.com/)",
"license": "MIT",
"keywords": [
"abstractplay",
"games",
"rankings",
"ratings",
"records"
],
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"chai": "^4.3.10",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^49.0.0",
"json-schema-to-typescript": "^13.1.1",
"mocha": "^10.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"glicko2-lite": "^4.0.0",
"nanoid": "^5.0.4",
"ts-trueskill": "^3.3.0"
}
}