This repository has been archived by the owner on Apr 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
62 lines (62 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
55
56
57
58
59
60
61
62
{
"name": "lunik-torrent",
"version": "3.2.8",
"description": "Web torrent client with directory storage",
"author": "Guillaume Lunik <[email protected]>",
"scripts": {
"postinstall": "scripts/init.sh && bower install --allow-root",
"start": "node src/index.js",
"dev": "nodemon src/index.js -w src/ --ignore src/public",
"deamon": "forever -a start src/index.js",
"test": "istanbul cover _mocha -- -R spec test/*"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Lunik/Lunik-Torrent"
},
"dependencies": {
"allocine-api": "^0.1.9",
"body-parser": "^1.18.0",
"bower": "^1.8.0",
"cheerio": "^1.0.0-rc.2",
"cloudscraper": "^1.4.1",
"colors": "^1.1.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"crypto-js": "^3.1.8",
"crypto-rand": "^0.0.2",
"express": "^4.15.3",
"forever": "^0.15.3",
"fs-extra": "^4.0.1",
"klaw": "^2.0.0",
"nedb": "^1.8.0",
"webtorrent": "^0.98.17",
"request": "^2.80.0"
},
"devDependencies": {
"chai": "^4.0.2",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"nodemon": "^1.12.0"
},
"standard": {
"ignore": [
"require.js"
],
"globals": [
"__base",
"__config",
"__DBtoken",
"__workingDir",
"$",
"it",
"describe",
"confirm",
"prompt",
"requirejs",
"Storage",
"App"
]
}
}