-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "whirlpool-parse",
"version": "1.0.0",
"description": "whirlpool html scrapper and parser",
"main": "src/listener.js",
"scripts": {
"build-parserq-js": "babel src --out-dir lib",
"build": "npm run build-parserq-js",
"prestart": "npm run build-parserq-js",
"start": "cross-env SSR=true node ./lib/listener.js",
"debug": "cross-env DEBUG=whirlpool-parse SSR=true node babel-node src/listener.js",
"lint": "eslint .",
"test": "",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"engines": {
"node": ">=10.0.0 <11.0.0",
"npm": ">=6.0.0 <7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rihbyne/whirlpool-parse.git"
},
"keywords": [
"whirlpool",
"parser",
"cherrios",
"axios",
"scrapper",
"mscs"
],
"author": "Rihan Pereira, MSCS, <rihen234@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rihbyne/whirlpool-parse/issues"
},
"homepage": "https://github.com/rihbyne/whirlpool-parse#readme",
"dependencies": {
"amqplib": "^0.5.3",
"bluebird": "^3.5.5",
"cheerio": "^1.0.0-rc.3",
"lodash": "^4.17.14",
"migrate": "1.6.2",
"mongoose": "5.6.10",
"sequelize": "^5.10.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0",
"async": "^3.1.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.3",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"eslint": "^6.0.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"lint-staged": "^9.1.0"
}
}