-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
39 lines (39 loc) · 983 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
{
"name": "simple-youtube-api",
"version": "5.2.1",
"description": "A module to simplify the YouTube API.",
"author": "Bryan Pikaard <[email protected]>",
"maintainers": [
"Tyler Richards <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tjrgg/simple-youtube-api.git"
},
"bugs": {
"url": "https://github.com/tjrgg/simple-youtube-api/issues"
},
"homepage": "https://github.com/tjrgg/simple-youtube-api",
"sideEffects": false,
"main": "src/index.js",
"unpkg": "dist/sya.min.js",
"scripts": {
"build": "webpack",
"docs": "jsdoc -c jsdoc.json",
"test": "mocha"
},
"dependencies": {
"iso8601-duration": "^1.2.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"dotenv": "^4.0.0",
"jsdoc": "^3.6.2",
"lodash.defaultsdeep": "^4.6.0",
"minami": "^1.1.0",
"mocha": "^3.5.3",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4"
}
}