-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "react-tournament-bracket",
"version": "0.2.4",
"description": "React tournament bracket renderer",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register src/**/*.test.tsx",
"build": "rimraf lib && tsc",
"prepublish": "npm test && npm run build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moodysalem/react-tournament-bracket.git"
},
"keywords": [
"react",
"tournament",
"tournaments",
"bracket",
"brackets",
"playoffs",
"play-off",
"playoff bracket",
"games",
"challonge"
],
"author": "Moody Salem",
"license": "MIT",
"bugs": {
"url": "https://github.com/moodysalem/react-tournament-bracket/issues"
},
"homepage": "https://github.com/moodysalem/react-tournament-bracket#readme",
"dependencies": {
"react-controllables": "^0.6.0",
"underscore": "^1.9.0",
"uuid": "^3.2.1"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/moment": "^2.13.0",
"@types/react": "^16.3.13",
"@types/rimraf": "^2.0.2",
"@types/underscore": "^1.8.8",
"@types/uuid": "^3.4.3",
"mocha": "^5.1.1",
"react": "^16.3.2",
"rimraf": "^2.6.2",
"ts-node": "^6.0.2",
"typescript": "^2.8.3"
}
}