-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.87 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
{
"name": "resolver-xml-generator",
"version": "0.5.5",
"description": "A contest data converter generates an XML file that is accepted by the ICPC resolver tool.",
"bin": "build/index.js",
"scripts": {
"start:dev": "ts-node ./src/index.ts",
"start": "node ./build/index.js",
"prebuild": "npm run clean",
"build": "tsc",
"prepackage": "npm run build",
"package": "pkg . --out-path ./build",
"clean": "rm -rf ./build",
"prerelease": "npm run package",
"release": "release-it",
"lint": "eslint --ignore-path .eslintignore --fix src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acmASCIS/resolver-xml-generator.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/acmASCIS/resolver-xml-generator/issues"
},
"homepage": "https://github.com/acmASCIS/resolver-xml-generator#readme",
"devDependencies": {
"@eslint/create-config": "^0.4.2",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/xml": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"pkg": "^5.8.0",
"prettier": "^2.8.4",
"release-it": "^15.6.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@acmascis/codeforces-client": "github:acmascis/codeforces-client",
"commander": "^10.0.0",
"lodash": "^4.17.21",
"xml": "^1.0.1"
},
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true,
"web": true,
"assets": [
"build/*"
]
}
}