-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 980 Bytes
/
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
{
"name": "cytube-mediaquery",
"version": "0.3.0",
"description": "Media provider metadata queries for CyTube",
"main": "index.js",
"scripts": {
"dev": "babel -D --watch --source-maps --out-dir lib/ src/",
"postinstall": "babel -D --source-maps --out-dir lib/ src/",
"test": "mocha --recursive"
},
"author": "Calvin Montgomery",
"license": "MIT",
"dependencies": {
"@calzoneman/jsli": "^2.0.1",
"domhandler": "^4.3.0",
"domutils": "^2.8.0",
"htmlparser2": "^7.2.0",
"prom-client": "^13.1.0",
"short-uuid": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-plugin-add-module-exports": "^1.0.4",
"mocha": "^10.2.0"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "14"
}
}
]
],
"plugins": [
"add-module-exports"
]
}
}