-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "sciolyff",
"version": "0.16.0",
"description": "A file format for Science Olympiad tournament results.",
"license": "MIT",
"author": "Duosmium Results (https://www.duosmium.org/results/)",
"type": "module",
"engines": {
"node": "^14.0.0 || >=16.0.0"
},
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/src/index.js",
"./interpreter": "./dist/src/interpreter/index.js",
"./validator": "./dist/src/validator/index.js",
"./convert": "./dist/src/convert/index.js"
},
"types": "./dist/src/index.d.ts",
"bin": {
"sciolyff-js": "./dist/bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Duosmium/sciolyff-js.git"
},
"homepage": "https://github.com/Duosmium/sciolyff-js#readme",
"bugs": {
"url": "https://github.com/Duosmium/sciolyff-js/issues"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint .",
"format": "prettier --check .",
"fix": "prettier --write . && eslint --fix .",
"build": "npm run clean && tsc",
"prepare": "husky install",
"release": "npm test && npm run build; release-it",
"test": "c8 ava",
"make-coverage": "c8 report -r lcovonly",
"update-snapshots": "ava --update-snapshots"
},
"keywords": [
"sciolyff",
"scioly",
"science olympiad",
"duosmium"
],
"dependencies": {
"@vanillaes/csv": "^3.0.1",
"chalk": "^5.3.0",
"commander": "^10.0.1",
"fetch-retry": "^5.0.6",
"js-yaml": "^4.1.0",
"js-yaml-source-map": "^0.2.2",
"node-fetch": "^3.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node-fetch": "^2.6.11",
"@types/yup": "^0.29.14",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"ava": "^6.1.2",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-ava": "^14.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "2.8.8",
"release-it": "^17.2.0",
"tsimp": "^2.0.11",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.{js,ts,json,yaml,yml,md}": "prettier --write",
"*.{js,ts}": "eslint --cache --fix"
},
"ava": {
"files": [
"tests/**/*",
"!tests/helpers.ts"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp/import"
],
"timeout": "30s"
},
"c8": {
"src": [
"./src/*"
],
"exclude": [
"./src/interpreter/model.ts",
"./src/interpreter/types.ts"
],
"all": true,
"clean": true
}
}