-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "putio-organise",
"version": "0.0.1",
"description": "Auto rename and move tv shows and movies on putio",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"start": "tsc && node -e \"require('./handler.js').hello()\"",
"node:watch": "nodemon lib/index.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:watch": "tsc -w",
"build": "tsc"
},
"keywords": [
"putio"
],
"author": "Jayphen",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/dotenv": "^4.0.3",
"@types/jest": "^23.3.3",
"@types/node": "^10.11.4",
"babel-loader": "8.0.4",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^3.1.1"
},
"dependencies": {
"dotenv": "^6.0.0",
"parse-torrent-name": "^0.5.4",
"put.io-node": "^1.0.3"
}
}