-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "lorcana-api",
"version": "0.3.3",
"description": "JavaScript / TypeScript client for https://lorcana-api.com/",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf dist/",
"checkUpdates": "npm-check-updates -u && npm run nuke && npm install",
"lint": "eslint --fix .",
"nuke": "rimraf dist/ node_modules/",
"prepublishOnly": "eslint . && tsc",
"test": "jest",
"test:update": "jest -u",
"watch:build": "tsc -w"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"npm-check-updates": "^17.1.11",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "~5.7.2",
"undici": "^7.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colacadstink/LorcanaAPI.js.git"
},
"keywords": [
"lorcana",
"lorcana-api"
],
"author": "Ben Harris (benharris5@gmail.com)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/colacadstink/LorcanaAPI.js/issues"
},
"homepage": "https://github.com/colacadstink/LorcanaAPI.js#readme",
"dependencies": {
"globals": "^15.13.0"
}
}