-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.91 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ms-video-indexer",
"version": "0.2.4",
"description": "Unofficial Javascript client library for Microsoft Video Analyzer",
"repository": {
"type": "git",
"url": "nwaughachukwuma/ms-video-indexer-js",
"directory": "https://github.com/nwaughachukwuma"
},
"homepage": "https://github.com/nwaughachukwuma/ms-video-indexer-js#readme",
"license": "MIT",
"author": {
"name": "Chukwuma Nwaugha",
"email": "nwaughac@gmail.com",
"url": "https://nwaughachukwuma.github.io/portfolio"
},
"keywords": [
"Video AI",
"Video Insights",
"Decode Video",
"Video Analyzer",
"Azure Video Indexer"
],
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"files": [
"lib"
],
"sideEffects": [
"./lib/index.js"
],
"scripts": {
"build": "tsc && tsup",
"test:types": "tsd",
"test": "tsd && ava",
"lint": "eslint \"**/*.ts\""
},
"dependencies": {
"node-fetch": "^2.6.7",
"sma-cache": "^0.1.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@types/node": "^16.10.2",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/parser": "4.32.0",
"ava": "^4.3.0",
"dotenv": "^8.2.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.0",
"lint-staged": "10.5.4",
"ms-video-indexer": "^0.2.2",
"prettier": "2.4.1",
"ts-node": "^10.2.1",
"tsd": "^0.20.0",
"tsup": "^6.1.2",
"typescript": "^4.4.3"
},
"lint-staged": {
"./**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ava": {
"files": [
"ava.test/**/*",
"!ava.test/init.js"
]
},
"tsd": {
"directory": "./tsd"
}
}