-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "captain-sparrow",
"version": "1.1.0",
"description": "Check for shows and download them.",
"repository": "https://github.com/gregolsky/captain-sparrow.git",
"keywords": [],
"private": false,
"bin": {
"captain-sparrow": "./bin/captain-sparrow"
},
"scripts": {
"test": "mocha",
"lint": "eslint .",
"check": "eslint . && mocha"
},
"author": "Grzegorz Lachowski",
"dependencies": {
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"cli": "^1.0.1",
"expand-home-dir": "0.0.3",
"ical-generator": "^0.2.10",
"jaro-winkler": "^0.2.6",
"lodash": "^4.17.10",
"longjohn": "^0.2.11",
"mockery": "^2.0.0",
"moment": "^2.8.4",
"pushbullet": "^2.2.0",
"qs": "^6.5.2",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"transmission": "^0.4.9",
"verror": "^1.6.0",
"winston": "^3.0.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.18.2",
"babel-eslint": "8",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015-node6": "^0.4.0",
"chai": "^4.0.1",
"dirty-chai": "^2.0.1",
"eslint": "4.x",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.2.0",
"mock-fs": "^4.5.0",
"rewire": "^4.0.1",
"sinon": "^6.0.0"
},
"engines": {
"node": "*"
}
}