-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1015 Bytes
/
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
{
"name": "@scryfall/api-types",
"version": "1.0.0-alpha.4",
"description": "Type definitions for the Scryfall API",
"main": "index.ts",
"scripts": {
"qa": "npm run check:types && npm run lint && npm run test",
"lint": "eslint",
"test": "jest",
"check:types": "tsc --noEmit"
},
"files": [
"index.ts",
"src/**/*"
],
"author": "scarletcs",
"license": "MIT",
"homepage": "https://github.com/scryfall/api-types#readme",
"repository": {
"type": "git",
"url": "https://github.com/scryfall/api-types.git"
},
"bugs": {
"url": "https://github.com/scryfall/api-types/issues"
},
"keywords": [
"scryfall",
"api",
"types",
"typescript"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.5",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}