-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "node-nest",
"version": "0.8.0",
"description": "Robust scraping framework",
"main": "index.js",
"repository": "https://github.com/d-oliveros/nest",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "DEBUG=nest* mocha",
"compile": "babel -d lib src",
"watch": "babel -w -d lib src"
},
"author": "David Oliveros",
"contributors": [
"David Oliveros"
],
"license": "MIT",
"dependencies": {
"ajv": "^5.2.3",
"babel-runtime": "^6.11.6",
"cheerio": "^1.0.0-rc.2",
"debug": "^3.1.0",
"http-errors": "^1.5.0",
"lodash": "^4.14.1",
"mongoose": "^4.5.8",
"promise-queue": "^2.2.3",
"puppeteer": "^0.11.0",
"request": "^2.83.0",
"request-promise": "^4.1.0",
"require-all": "^2.0.0",
"shortid": "^2.2.6",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.11.6",
"chai": "^4.1.2",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-import-resolver-node": "^0.3.1",
"eslint-plugin-import": "^2.7.0",
"mkdirp": "^0.5.1",
"mocha": "^3.0.0"
}
}