-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"name": "scryfall-client",
"version": "0.24.8",
"description": "A module for making requests to scryfall",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/crookedneighbor/scryfall-client.git"
},
"scripts": {
"prepublishOnly": "node ./scripts/download-symbology-fixture.js && npm run typescript",
"typescript": "tsup src/index.ts",
"lint": "eslint",
"pretty": "prettier --write .",
"posttest": "npm run lint",
"test": "vitest",
"test:unit": "vitest run test/unit/",
"test:integration": "vitest test/integration/",
"test:all": "npm run lint && npm run test:unit && npm run test:integration"
},
"keywords": [
"mtg",
"magic the gathering",
"scryfall"
],
"author": "blade <blade@crookedneighbor.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@vitest/eslint-plugin": "^1.1.7",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.2"
}
}