-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.78 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "harpee",
"version": "4.1.2",
"description": "Harpee is a modeling tool for HarperDB, which allows you to have a structured data for your tables (collections), it supports both callbacks and Promises.",
"main": "./dist/lib/index.js",
"types": "./types/lib",
"scripts": {
"dev": "tsc",
"gen:docs": "npx typedoc",
"watch": "tsc --watch",
"test": "nyc ava",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build && npm run gen:docs",
"fix:prettier": "prettier \"src/lib/**/*.ts\" --write"
},
"keywords": [
"model",
"harperdb",
"database",
"harpee",
"SQL",
"NoSQL"
],
"files": [
"dist",
"!dist/test/",
"!types/test/",
"types"
],
"author": "Lucky Victory <luckyvictory54@gmail.com> (https://lucky-victory.dev)",
"license": "MIT",
"typings": "./types/lib",
"dependencies": {
"axios": "^0.27.1",
"joi": "^17.6.0",
"just-is-empty": "^3.2.1",
"just-omit": "^2.1.2",
"just-pick": "^4.1.1",
"just-safe-get": "^4.1.1",
"just-safe-set": "^4.1.1",
"just-typeof": "^3.1.1"
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@types/node": "^18.7.18",
"ava": "^5.2.0",
"nyc": "^15.1.0",
"typedoc": "^0.23.14",
"typescript": "^4.3.5"
},
"prettier": {
"singleQuote": true,
"semi": true,
"trailingComma": "es5"
},
"ava": {
"files": [
"!dist/lib/**",
"!src/test/helper.ts"
],
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucky-victory/harpee.git"
},
"bugs": {
"url": "https://github.com/lucky-victory/harpee/issues"
},
"homepage": "https://harpee-docs-v4.netlify.app"
}