-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 894 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
{
"name": "tinydate",
"version": "1.3.0",
"repository": "lukeed/tinydate",
"description": "A tiny (349B) reusable date formatter. Extremely fast!",
"unpkg": "dist/tinydate.min.js",
"module": "dist/tinydate.mjs",
"main": "dist/tinydate.js",
"types": "index.d.ts",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "[email protected]",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"build": "bundt",
"bench": "node bench",
"prebench": "npm run build",
"pretest": "npm run build",
"test": "tape test/*.js | tap-spec"
},
"files": [
"dist",
"*.d.ts"
],
"keywords": [
"date",
"datestamp",
"format",
"stamp",
"time",
"timestamp",
"time-stamp"
],
"devDependencies": {
"bundt": "0.4.0",
"tap-spec": "5.0.0",
"tape": "4.11.0"
}
}