forked from talmobi/yt-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "yt-search",
"version": "0.1.4",
"description": "search youtube",
"main": "dist/yt-search.min.js",
"bin": {
"yt-search": "./bin/cli.js"
},
"files": [
"bin/cli.js",
"dist/yt-search.min.js"
],
"scripts": {
"build": "npm run build:src && npm run uglify",
"build:src": "browserify --node --no-bundle-external --standalone ytSearch -t [ babelify --presets [ env ] ] src/index.js -o dist/yt-search.js 2>&1 | wooster",
"uglify": "uglifyjs dist/yt-search.js -cmo dist/yt-search.min.js",
"prepublish": "npm run build && npm test",
"test:production": "production=1 node test/test.js | faucet",
"test:dev": "node test/test.js | faucet",
"test": "npm run test:dev && npm run test:production"
},
"author": "talmobi <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/talmobi/yt-search"
},
"bugs": {
"url": "https://github.com/talmobi/yt-search/issues",
"email": "[email protected]"
},
"dependencies": {
"async.parallel": "~0.5.2",
"cheerio": "~0.19.0",
"dasu": "0.0.23",
"minimist": "~1.2.0",
"node-fzf": "0.0.5"
},
"devDependencies": {
"babel-core": "~6.26.0",
"babel-preset-env": "~1.6.1",
"babelify": "~8.0.0",
"browserify": "~16.1.1",
"faucet": "0.0.1",
"mocha": "^2.4.5",
"spacestandard": "~0.2.0",
"tape": "~4.9.0"
}
}