-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.35 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
51
52
53
54
55
56
57
{
"name": "datetimejs",
"description": "Library for manipulating, formatting, and parsing dates and times",
"version": "1.0.0",
"main": "dist/datetime.js",
"module": "dist/datetime.mjs",
"browser": "dist/datetime.umd.js",
"homepage": "https://github.com/foxbunny/datetimejs/",
"keywords": [
"date",
"time",
"strftime",
"strptime",
"formatting",
"server",
"browser"
],
"author": "Hajime Yamasaki Vukelic <[email protected]>",
"bugs": {
"url": "https://github.com/foxbunny/datetimejs/issues",
"email": "[email protected]"
},
"license": {
"type": "MIT",
"url": "https://github.com/foxbunny/datetimejs/blob/master/LICENSE"
},
"repository": {
"type": "git",
"url": "https://github.com/foxbunny/datetimejs.git"
},
"engines": {
"node": ">= 0.4.1"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"prepublish": "yarn run build",
"docs": "jsdoc -c jsdoc.config.js"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"core-js": "2",
"docdash": "^1.1.1",
"jest": "^24.8.0",
"jest-date-mock": "^1.0.7",
"jsdoc": "^3.6.2",
"rollup": "^1.14.4",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1"
},
"dependencies": {}
}