-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 840 Bytes
/
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
{
"name": "@knutkirkhorn/gcd-cli",
"version": "3.0.1",
"description": "Get the greatest common devisor of two numbers",
"bin": {
"gcd": "cli.js"
},
"scripts": {
"test": "ava",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/knutkirkhorn/gcd-cli.git"
},
"files": [
"cli.js"
],
"keywords": [
"gcd",
"greatest",
"common",
"devisor",
"cli",
"math"
],
"author": "Knut Kirkhorn",
"type": "module",
"engines": {
"node": ">=14.16"
},
"license": "MIT",
"dependencies": {
"@knutkirkhorn/gcd": "^2.0.0",
"meow": "^11.0.0"
},
"devDependencies": {
"ava": "^5.2.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^45.0.2",
"execa": "^7.0.0"
}
}