-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.81 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
{
"name": "badtaste",
"version": "0.6.3",
"description": "Play audio from vk.com in your terminal",
"main": "cli.js",
"bin": {
"badtaste": "cli.js"
},
"scripts": {
"build": "babel -s -d dist src",
"build:watch": "npm run build -- --watch",
"lint": "eslint 'src/**/*.js'",
"precommit": "npm run lint && npm test",
"start": "node cli.js",
"test": "mocha --require babel/register",
"test:watch": "mocha -w --require babel/register"
},
"preferGlobal": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/ewnd9/badtaste.git"
},
"keywords": [
"vk",
"vk.com",
"audio",
"cli",
"player"
],
"author": "ewnd9 <ewndnine@gmail.com>",
"license": "MIT",
"dependencies": {
"@ewnd9/react-blessed": "^0.1.7",
"babel-preset-react": "^6.5.0",
"blessed": "^0.1.81",
"bluebird": "^2.10.0",
"dot-file-config": "^0.5.0",
"exit-hook": "^1.1.1",
"got": "^6.3.0",
"id3js": "^1.1.3",
"inquirer-menu": "^0.2.0",
"inquirer-question": "^1.1.1",
"intel": "^1.0.2",
"komponist": "^0.1.0",
"lodash": "^3.10.1",
"meow": "^3.4.1",
"pify": "^2.3.0",
"player": "^0.6.1",
"playmusic": "^2.1.0",
"react": "^0.14.8",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-side-effect": "^2.1.2",
"redux-thunk": "^2.1.0",
"split-tracklist": "^1.1.1",
"update-notifier": "^0.5.0",
"vk-universal-api": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.3.0",
"eslint": "^3.0.0",
"eslint-plugin-react": "^6.1.0",
"husky": "^0.11.6",
"mocha": "^2.3.3",
"source-map-support": "^0.4.0"
}
}