-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.72 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
{
"name": "@achannarasappa/locust",
"version": "1.3.0",
"description": "Distributed serverless web crawling/web scraping with support for js execution",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/achannarasappa/locust.git"
},
"directories": {
"lib": "lib"
},
"scripts": {
"coverage": "nyc --reporter=text --reporter=lcov mocha --exit --grep '@server' --invert --timeout 10000 './lib/*.spec.js'",
"coverage:coveralls": "npm run coverage && ./node_modules/.bin/nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./lib",
"lint:fix": "eslint --fix ./lib",
"test": "mocha --exit --timeout 10000 './lib/*.spec.js'",
"test:watch": "npm run test -- --watch"
},
"author": "Ani Channarasappa",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"husky": "^2.7.0",
"mocha": "^7.2.0",
"nyc": "^14.1.1",
"puppeteer": "^2.0.0",
"sinon": "^7.5.0"
},
"dependencies": {
"@achannarasappa/eslint-config": "^1.0.4",
"ioredis": "^4.14.1",
"joi": "^14.3.1",
"puppeteer-core": "^2.0.0",
"ramda": "^0.26.1",
"winston": "^3.2.1"
},
"eslintConfig": {
"extends": "@achannarasappa/eslint-config",
"env": {
"mocha": true,
"node": true
},
"rules": {
"consistent-return": "off"
}
},
"nyc": {
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"all": true,
"check-coverage": true,
"skip-full": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/**/*.spec.js"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm audit"
}
}
}