-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 963 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": "yesterdayone",
"version": "1.0.3",
"description": "Get the yesterday from the date",
"engines": {
"node": ">=9.0.0"
},
"xo": {
"semicolon": false
},
"ava": {
"require": [
"esm"
]
},
"main": "index.js",
"scripts": {
"test": "./node_modules/xo/cli.js index.js && ./node_modules/.bin/ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcker/yesterdayone.git"
},
"keywords": [
"date",
"datetime",
"nodejs",
"micropackage",
"yesterday",
"javascript"
],
"author": "marcker <marckfree@gmail.com> (http://marcker.herokuapp.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcker/yesterdayone/issues"
},
"homepage": "https://github.com/marcker/yesterdayone#readme",
"devDependencies": {
"ava": "^0.25.0",
"esm": "^3.0.28",
"xo": "^0.20.3"
},
"dependencies": {
"dateformat": "^3.0.3"
}
}