-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 870 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
{
"name": "power-range",
"version": "1.2.0",
"description": "🏋🏻 A small and powerful library for creating ranges of almost anything: numbers, letters, dates and even strings! Yay!",
"license": "MIT",
"repository": "alcidesqueiroz/power-range",
"author": {
"name": "Alcides Queiroz",
"email": "alcidesqueiroz <at> gmail",
"url": "https://www.alcidesqueiroz.com"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "eslint index.js && tap test.js"
},
"files": [
"index.js"
],
"keywords": [
"range",
"interval",
"period",
"number",
"date",
"hour",
"letter",
"string"
],
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"tap": "^14.11.0"
},
"dependencies": {
"whatype": "^1.1.0"
}
}