-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.8 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "youtube-search-google-api",
"version": "0.6.0",
"description": "YouTube Search Google API for Node.js. Search for YouTube videos, channels, playlists and live events via Google API for Node.js.",
"main": "dist/youtube-search.js",
"module": "lib/entry.js",
"license": "MIT",
"author": {
"name": "Steven Garcia",
"url": "https://webdevel.neocities.org"
},
"repository": {
"type": "git",
"url": "https://github.com/webdevel/youtube-search-google-api"
},
"bugs": {
"url": "https://github.com/webdevel/youtube-search-google-api/issues"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"esdoc": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"mocha": "^4.0.1",
"ncp": "^2.0.0",
"nyc": "^11.3.0",
"rimraf": "^2.6.2",
"sinon": "^4.1.1",
"sinon-chai": "^2.14.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1"
},
"keywords": [
"youtube",
"search",
"google",
"api",
"youtube-search",
"youtube-google-api",
"google-api",
"google-api-youtube",
"google-api-youtube-search",
"youtube-search-google-api",
"youtube-videos",
"youtube-channels",
"youtube-playlists",
"video",
"videos",
"channel",
"channels",
"playlist",
"playlists",
"node",
"nodejs",
"node.js",
"find"
],
"files": [
"LICENSE",
"README.md",
"dist/**/*.js",
"lib/**/*.js",
"package.json"
],
"scripts": {
"prepare": "npm run build",
"build": "rimraf lib/* && babel --out-dir lib src && npm run webpack && npm run webpack:dev",
"clean": "rimraf lib/* dist/* debug/* docs/* coverage/*",
"debug": "rimraf debug/* && babel --out-dir debug/src src && babel --out-dir debug/test test && mocha --reporter spec --inspect-brk \"debug/test/*Spec.js\"",
"doc": "rimraf docs/* && esdoc",
"test": "cross-env NODE_ENV=test nyc --reporter=text mocha --require babel-register --timeout 9000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"webpack": "rimraf dist/* && webpack --env.production --env.NODE_ENV=production --define process.env.NODE_ENV=\"'production'\"",
"webpack:dev": "webpack --env.development --env.NODE_ENV=development"
},
"contributors": [
{
"name": "Steven Garcia",
"url": "https://webdevel.neocities.org"
}
],
"dependencies": {
"lodash": "^4.17.4",
"request": "^2.83.0",
"xhr": "^2.4.0"
}
}