-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.65 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
{
"name": "@reuters-graphics/sportlich",
"version": "1.0.2",
"type": "module",
"main": "./dist/index.js",
"exports": {
"types": "./dist/src/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/src/index.d.ts",
"repository": "https://github.com/reuters-graphics/sportlich",
"author": "Dylan Freedman <[email protected]>",
"contributors": [
"Dylan Freedman <[email protected]>",
"Jon McClure <[email protected]>"
],
"license": "MIT",
"private": false,
"engines": {
"node": ">=18"
},
"keywords": [],
"files": [
"dist/**/*"
],
"c8": {
"reporter": [
"text",
"lcov"
]
},
"scripts": {
"prepublishOnly": "npm run build:package",
"build:package": "rimraf ./dist && rollup --config rollup.config.js && publint",
"build:docs": "typedoc",
"docs:preview": "live-server ./docs",
"gen:types": "tsx ./src/_typegen/soccer.ts",
"DONOTUSE:openapi:soccer": "openapi-typescript ./src/apis/@types/swagger/soccer/swagger-sdapi-soccer.json -o ./src/apis/@types/swagger/soccer/api.ts",
"test": "c8 mocha test/*.ts",
"lint": "prettier --check . && eslint . && publint",
"format": "prettier --write .",
"changeset:version": "changeset version",
"changeset:publish": "git add --all && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/recommended": "^1.0.3",
"@types/expect.js": "^0.3.32",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.17.5",
"@types/lowdb": "^1.0.15",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@types/qs": "^6.9.15",
"@types/update-notifier": "^6.0.8",
"@types/validator": "^13.11.8",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"c8": "^10.1.2",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"expect.js": "^0.3.1",
"glob": "^10.4.2",
"lefthook": "^1.5.6",
"live-server": "1.2.1",
"mocha": "^10.4.0",
"openapi-typescript": "^6.7.6",
"publint": "^0.2.8",
"quicktype-core": "^23.0.170",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-node-externals": "^7.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tslib": "^2.6.2",
"tsx": "^4.15.6",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.7.2",
"lodash": "^4.17.21",
"lowdb": "^1.0.0",
"qs": "^6.12.1"
}
}