forked from video-db/videodb-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "videodb",
"version": "0.1.3",
"description": "A NodeJS wrapper for VideoDB's API written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"clean": "rm -rf ./dist/",
"lint": "eslint ./src/ --fix",
"prepare": "husky install",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit",
"once": "ts-node -r tsconfig-paths/register src/index.ts",
"docs:gen": "npm run docs:del && typedoc --plugin typedoc-plugin-markdown",
"docs:del": "rm -rf ./docs",
"docs:html": "rm -rf ./docs-html && typedoc --out docs-html --entryPoints ./src/ --entryPointStrategy expand --excludePrivate",
"docs:serve": "npm run docs:html && npx serve docs-html",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/video-db/videodb-node.git"
},
"keywords": [
"videodb",
"video-db",
"video_db",
"videodb-node"
],
"author": "VideoDB",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/video-db/videodb-node/issues"
},
"homepage": "https://videodb.io",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.2"
},
"dependencies": {
"axios": "^1.6.2",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"uuid": "^9.0.1"
}
}