-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 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_crawler",
"version": "1.2.0",
"description": "node_crawler",
"main": "index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.3",
"circular-json": "^0.5.9",
"jest": "^25.2.3",
"querystring": "^0.2.0",
"utf8": "^3.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"pre-commit": "^1.2.2"
},
"scripts": {
"ibon": "node lib/ibon.js",
"test": "jest",
"lint": "eslint --ext .js .",
"test:coverage": "jest --collectCoverage"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jerseysu/node_crawler.git"
},
"keywords": [
"crawler"
],
"author": "jerseysu",
"license": "ISC",
"bugs": {
"url": "https://github.com/jerseysu/node_crawler/issues"
},
"homepage": "https://github.com/jerseysu/node_crawler#readme"
}