forked from Celtian/dbmaster-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.74 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.74 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dbmaster-cli",
"version": "0.0.14",
"description": "Tool for converting tables between Fifa Soccer Games",
"bin": {
"dbmaster": "bin/dbmaster.js"
},
"scripts": {
"start": "ts-node bin/dbmaster.ts",
"start:watch": "tsc-watch --project tsconfig.json --onSuccess \"yarn start\"",
"build": "tsc",
"test": "jest --config test/jest-config.json",
"person": "ts-node --project scripts/tsconfig.ts-node.json scripts/person",
"copydist": "ts-node --project scripts/tsconfig.ts-node.json scripts/copy-dist",
"postbuild": "yarn copydist",
"local": "npm i -g && dbmaster",
"husky:install": "husky install",
"gpr:setup": "ts-node --project scripts/tsconfig.ts-node.json scripts/gpr-setup",
"postversion": "git push && git push --follow-tags",
"publish:beta": "yarn && yarn build && npm publish --folder dist --tag beta",
"release:beta": "npm version prerelease -m \"chore(update): prelease %s β\"",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Celtian/dbmaster-cli.git"
},
"keywords": [
"fifa",
"convert",
"db-master"
],
"author": {
"name": "Dominik Hladík",
"email": "dominik.hladik@seznam.cz"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Celtian/dbmaster-cli/issues"
},
"homepage": "https://github.com/Celtian/dbmaster-cli",
"engines": {
"node": ">= 12"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"byline": "^5.0.0",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"commander": "^6.2.0",
"faker": "^5.1.0",
"figlet": "^1.5.2",
"iconv-lite": "^0.6.2",
"joi": "^17.7.0",
"js-yaml": "^3.14.0",
"os-name": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/byline": "^4.2.33",
"@types/clear": "^0.1.0",
"@types/faker": "^5.1.4",
"@types/figlet": "^1.5.5",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.15",
"@types/joi": "^17.2.3",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.5",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.2",
"jest": "^26.6.3",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"ts-jest": "^26.4.4",
"ts-node": "^10.9.1",
"typescript": "^4.0.5"
}
}