-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "crossfit-wod",
"version": "0.0.7",
"description": "crossfit-wod will log a random workout of the day from https://crossfit.com/workout/ to your console",
"main": "lib/index.js",
"bin": {
"crossfit-wod": "./lib/index.js"
},
"scripts": {
"lint": "eslint . --ext .ts,.js --resolve-plugins-relative-to .",
"test": "./node_modules/.bin/lab -a code -t 93 -L -r console -o stdout -r lcov -o coverage/lcov.info",
"test-html": "mkdir -p coverage && ./node_modules/.bin/lab -a code -t 100 -L -r html > coverage/index.html"
},
"homepage": "https://github.com/igorkosta/crossfit-wod",
"repository": {
"type": "git",
"url": "https://github.com/igorkosta/crossfit-wod"
},
"bugs": {
"url": "https://github.com/igorkosta/crossfit-wod/issues"
},
"keywords": [
"crossfit",
"workout",
"wod",
"thrusters",
"wall balls",
"deadlift",
"pull-ups",
"handstand push-ups",
"cleans",
"jerks"
],
"dependencies": {
"cheerio": "^0.20.0",
"node-fetch": "^2.6.1"
},
"author": "igorkosta",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"code": "^4.0.0",
"eslint": "^7.10.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.6.0",
"lab": "^11.1.0",
"sinon": "^1.17.6",
"standard": "^14.3.4"
}
}