forked from jacobwgillespie/plex-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "plex-sync",
"version": "0.3.0",
"description": "Sync watched status between Plex servers",
"main": "lib/index.js",
"bin": {
"plex-sync": "bin/plex-sync"
},
"files": [
"bin",
"lib",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "babel src --out-dir lib/",
"lint": "eslint src",
"preversion": ". ./resources/checkgit.sh && npm test",
"prepublish": ". ./resources/prepublish.sh",
"sync": "node lib/index.js",
"test": "npm run build",
"watch": "npm run build -- --watch"
},
"author": "Jacob Gillespie <jacobwgillespie@gmail.com>",
"license": "MIT",
"dependencies": {
"ascii-progress": "jacobwgillespie/ascii-progress#patch-1",
"babel-core": "^6.13.2",
"babel-runtime": "^6.11.6",
"dotenv": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"update-notifier": "^1.0.2",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jacobwgillespie/plex-sync.git"
},
"bugs": {
"url": "https://github.com/jacobwgillespie/plex-sync/issues"
},
"homepage": "https://github.com/jacobwgillespie/plex-sync#readme"
}