-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "youtube-api-es6",
"version": "1.0.3",
"description": "Youtube API",
"main": "app.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha --timeout 120000 test/*/*.js",
"start": "node --harmony --max_old_space_size=400 app.js",
"lint": "mkdir -p artifacts/lint/ && ./node_modules/.bin/jshint . --verbose",
"lint-jenkins": "mkdir -p artifacts/lint/ && ./node_modules/.bin/jshint . --verbose --reporter=checkstyle > artifacts/lint/jshint.xml || exit 0",
"devtest": "jenkins-mocha --cobertura test/*",
"coverage": "istanbul cover --report html ./node_modules/mocha/bin/_mocha -- --timeout 120000 test/*/*.js"
},
"author": "Gorav Singal",
"license": "ISC",
"dependencies": {
"async": "2.6.0",
"moment": "2.19.4",
"request": "^2.88.0",
"request-promise-native": "1.0.5",
"underscore": "1.8.3",
"urijs": "1.19.1"
},
"devDependencies": {},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GyanBlog/youtube-api-nodejs.git"
},
"keywords": [
"youtube-api",
"youtube-api"
],
"bugs": {
"url": "https://github.com/GyanBlog/youtube-api-nodejs/issues"
},
"homepage": "https://www.gyanblog.com/gyan/44-youtube-api-nodejs-usage-example/"
}