-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 1.07 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
{
"name": "node-pastebin-scraper",
"version": "1.0.0",
"description": "A rudimentary way to scrape recent pastes on pastebin without having an API key.",
"main": "scraper.js",
"dependencies": {
"cheerio": "^0.20.0",
"q": "^1.5.1",
"repeat": "0.0.6",
"request": "^2.72.0",
"request-debug": "^0.2.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-root-import": "^6.1.0",
"babel-preset-env": "^1.7.0"
},
"scripts": {
"build": "./node_modules/.bin/babel ./src --experimental --source-maps-inline -d ./dist",
"example": "nodemon example.js --exec \"node -r babel-register\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlejandroEsquivel/Node-Pastebin-Scraper.git"
},
"author": "Alejandro Esquivel",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlejandroEsquivel/Node-Pastebin-Scraper/issues"
},
"homepage": "https://github.com/AlejandroEsquivel/Node-Pastebin-Scraper#readme"
}