-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
64 lines (64 loc) · 1.85 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
{
"name": "brackets-manager",
"version": "1.6.4",
"description": "A simple library to manage tournament brackets (round-robin, single elimination, double elimination)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"brackets-model": "^1.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "18.11.9",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"brackets-json-db": "1.0.2",
"brackets-memory-db": "^1.0.4",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.26.0",
"eslint-plugin-jsdoc": "^39.6.2",
"json-server": "^0.17.1",
"mocha": "10.1.0",
"mocha-each": "^2.0.1",
"nyc": "^15.1.0",
"typescript": "^4.8.4"
},
"scripts": {
"lint": "eslint '**/*.{js,ts}' --fix",
"test": "mocha 'test/**/*.spec.js'",
"db": "json-server --watch db.json",
"start": "tsc --watch",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"coverage": "nyc -r text -r lcov npm test"
},
"keywords": [
"javascript",
"typescript",
"tournament",
"brackets",
"manager",
"database"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Drarig29/brackets-manager.js.git"
},
"author": "Corentin Girard",
"license": "ISC",
"bugs": {
"url": "https://github.com/Drarig29/brackets-manager.js/issues"
},
"homepage": "https://github.com/Drarig29/brackets-manager.js#readme"
}