forked from vinicius33/moment-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 958 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
{
"name": "@deliveryhero/logistics-moment-cache",
"description": "Simple utility to cache moment.js instances.",
"version": "0.1.17",
"repository": "git://github.com/deliveryhero/moment-cache.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/deliveryhero"
},
"scripts": {
"build": "babel ./lib --ignore moment --out-file moment-cache.js",
"prepublish": "npm run build",
"watch": "babel ./lib --watch --ignore moment --out-file moment-cache.js"
},
"main": "./moment-cache.js",
"dependencies": {
"moment": "2.30.1",
"moment-timezone": "0.5.46"
},
"keywords": [
"moment",
"moment-js",
"time",
"date",
"datetime",
"cache",
"speed",
"performance",
"chicks"
],
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0"
},
"babel": {
"presets": [
"es2015"
]
}
}