-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "fide-ratings-scraper",
"version": "1.0.6",
"description": "FIDE player ratings scraper",
"repository": "github:xRuiAlves/fide-ratings-scraper",
"main": "src/main.js",
"bin": {
"fide-ratings-scraper": "./bin/index.js"
},
"scripts": {
"start": "node src/api.js",
"dev": "nodemon src/api.js",
"test": "jest --coverage",
"test:publish": "npm test && coveralls < coverage/lcov.info",
"test:mutation": "stryker run",
"test:mutation:publish": "stryker run --reporters dashboard",
"lint": "eslint test/**/*.js src/**/*.js"
},
"keywords": [
"FIDE",
"Chess",
"Ratings",
"Scraping"
],
"author": "Rui Alves",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"dotenv-flow": "^3.1.0",
"express": "^4.17.1",
"express-timeout-handler": "^2.2.0",
"node-fetch": "^2.6.6"
},
"devDependencies": {
"@stryker-mutator/core": "^6.4.1",
"@stryker-mutator/javascript-mutator": "^4.0.0",
"@stryker-mutator/jest-runner": "^6.4.1",
"coveralls": "^3.1.0",
"eslint": "^7.6.0",
"fs": "0.0.1-security",
"jest": "^26.2.2",
"nodemon": "^2.0.4"
}
}