-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "githunter-crawler",
"version": "1.0.0",
"description": "Crawler some Git Webpages",
"main": "githunter-scraper.js",
"engines": {
"node": ">=10.20.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix . --ext .js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/labbsr0x/githunter-crawler.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/labbsr0x/githunter-crawler/issues"
},
"homepage": "https://github.com/labbsr0x/githunter-crawler#readme",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"conductor-client": "^1.2.0",
"config": "^3.3.1",
"cors": "^2.8.5",
"crawler": "^1.2.2",
"export-files": "^2.1.1",
"express": "^4.17.1",
"json-mapper": "0.0.12",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"mongoose": "^5.9.25",
"path": "^0.12.7",
"qs": "^6.9.4",
"route-parser": "0.0.5",
"winston": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.0.5"
}
}