-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 900 Bytes
/
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
{
"name": "rarbg-api",
"version": "1.1.4",
"description": "A simple node.js wrapper for rarbg.to api",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test mocha test/*.spec.js",
"build": "babel src -d lib"
},
"homepage": "https://github.com/serenader2014/rarbg-api",
"repository": {
"type": "git",
"url": "https://github.com/serenader2014/rarbg-api"
},
"keywords": [
"torrent",
"rarbg.to",
"api",
"torrent download",
"rarbg api"
],
"author": "serenader",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "0.10.0"
}
}
]
]
}
}