-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1004 Bytes
/
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
{
"name": "ql-stats-model",
"version": "0.1.7",
"description": "A typed and documented Quake Live stats data model",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"directories": {
"lib": "lib"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"scripts": {
"build": "rm -rf lib && tsc",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/quakelive-server-standards/ql-stats-model.git"
},
"keywords": [
"quakelive",
"stats"
],
"author": "Quake Live Server Standards",
"license": "ISC",
"bugs": {
"url": "https://github.com/quakelive-server-standards/ql-stats-model/issues"
},
"homepage": "https://github.com/quakelive-server-standards/ql-stats-model#readme"
}