-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.44 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
58
{
"name": "datarock-client",
"version": "0.3.0",
"description": "An unofficial client for integrating with Datarock's Public API",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.0.0 <=22.0.0"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint ./src/* && prettier ./ --check",
"pretty": "prettier ./ --write",
"type-check": "tsc --noEmit",
"build": "tsup",
"ci": "npm run type-check && npm run lint",
"test": "jest"
},
"author": "Erik Froese",
"license": "MIT",
"dependencies": {
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/uuid": "^10.0.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.10.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"uuid": "^10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/froesecom/datarock-client.git"
},
"keywords": [
"Datarock",
"typescript"
],
"bugs": {
"url": "https://github.com/froesecom/datarock-client/issues"
},
"homepage": "https://github.com/froesecom/datarock-client#readme"
}