-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 980 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
40
41
{
"name": "splex",
"version": "1.0.15",
"description": "Splex - Stream and view multiple files at once",
"main": "cli.js",
"scripts": {
"lint": "eslint splex.js bin/producer.js",
"lint-fix": "eslint --fix splex.js bin/producer.js",
"test": "ava && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kodi/splex.git"
},
"bin": {
"splex": "./splex.js"
},
"author": "Dragan Bajcic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kodi/splex/issues"
},
"eslintConfig": {
"extends": "xo-space"
},
"homepage": "https://github.com/kodi/splex#readme",
"dependencies": {
"chalk": "^2.4.2",
"meow": "^5.0.0",
"dot-prop": ">=4.2.1",
"tail": "^2.0.3",
"update-notifier": "^3.0.1"
},
"devDependencies": {
"ava": "^2.3.0",
"eslint": "^6.2.2",
"eslint-config-xo-space": "^0.21.0",
"faker": "^4.1.0",
"xo": "^0.24.0"
}
}