-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
{
"name": "harperdbjs",
"description": "A Javascript helper library written in Typescript to work with HarperDB easily.",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"docs:gen": "typedoc",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{ts}": [
"eslint . --fix"
],
"**/*.{ts,json}": [
"prettier . -w"
]
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash.isundefined": "^3.0.6",
"@types/lodash.omitby": "^4.6.6",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.5",
"jest-mock-axios": "^4.4.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typedoc": "^0.21.1",
"typescript": "^4.3.4"
},
"dependencies": {
"axios": "^0.21.1",
"lodash.isundefined": "^3.0.1",
"lodash.omitby": "^4.6.0",
"snake-case": "^3.0.4"
},
"homepage": "https://www.github.com/webdevavi/harperdbjs#readme",
"repository": "https://www.github.com/webdevavi/harperdbjs",
"bugs": {
"url": "https://github.com/webdevavi/harperdbjs/issues",
"email": "savinash2608@gmail.com"
},
"funding": {
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/webdevavi"
},
"keywords": [
"harperdbjs",
"harperdb",
"harperdb node client",
"harperdb node",
"harperdb javascript",
"harperdb typescript"
]
}