-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 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
57
58
59
60
61
62
63
64
65
{
"author": "Alberto Delgado <turutupa.com>",
"name": "doubles-tournament",
"version": "1.0.5",
"description": "Create doubles tournaments for games like tenis, table tennis, padel, bridge, etc",
"homepage": "https://github.com/turutupa/doubles-tournament",
"repository": {
"type": "git",
"url": "https://github.com/turutupa/doubles-tournament"
},
"bugs": {
"url": "https://github.com/turutupa/doubles-tournament/issues"
},
"main": "./lib/index.js",
"scripts": {
"commit": "git-cz",
"test": "jest --config jestconfig.json",
"build": "npm run format && gulp build",
"format": "prettier --write src/**/*.ts",
"lint": "tslint --project 'tsconfig.json'",
"prepare": "npm version patch",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"dev": "jest --watchAll --config jestconfig.json",
"start": "nodemon --exec 'ts-node -r tsconfig-paths/register' ./src/index.ts",
"deploy": "npm publish --access-public",
"git": "npm run build && git add . && git commit -m",
"postgit": "git push --all"
},
"files": [
"lib/**/*"
],
"keywords": [
"tournament",
"doubles",
"round robin",
"round",
"robin",
"brackets",
"padel",
"tenis",
"ping pong",
"tablet tennis"
],
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.20",
"concurrently": "^5.3.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-ts-alias": "^1.3.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^26.6.3",
"merge2": "^1.4.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.0.0-dev.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.4"
},
"dependencies": {}
}