-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "type-surrealdb",
"version": "0.1.4",
"description": "Typescript support and class utils for SurrealDB",
"homepage": "https://github.com/ibilux/type-surrealdb",
"keywords": [
"surrealdb",
"surrealdb.js",
"surql",
"surrealql",
"node",
"typescript",
"class",
"schema",
"decorators",
"orm",
"database",
"generator",
"schemagenerator"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md",
"coverage/badge-*.svg"
],
"repository": {
"type": "git",
"url": "github.com/ibilux/type-surrealdb"
},
"author": "ibilux <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc -p .",
"lint": "eslint -c .eslintrc.cjs index.ts",
"lint:fix": "eslint -c .eslintrc.cjs --fix index.ts",
"format": "prettier --write \"index.ts\"",
"test": "test",
"test:coverage": "test --coverage && jest-coverage-badges"
},
"devDependencies": {
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"directories": {
"lib": "lib"
}
}