-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
54 lines (54 loc) · 1.39 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.6.1",
"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 --ignore-path .gitignore .",
"preversion": "npm test",
"prepublish": "npm run build",
"sync": "node lib/index.js",
"test": "npm run build",
"watch": "npm run build -- --watch"
},
"author": "Jacob Gillespie <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-core": "^6.24.1",
"babel-runtime": "^6.23.0",
"dotenv": "^4.0.0",
"isomorphic-fetch": "^2.2.1",
"ts-progress": "^0.1.2",
"update-notifier": "^2.1.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.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"
}