forked from yavorsky/moment-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 897 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": "moment-cache",
"description": "Simple utility to cache moment.js instances.",
"author": "Artem Yavorsky",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "[email protected]:yavorsky/moment-cache.git"
},
"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.19.2",
"moment-timezone": "0.5.14"
},
"keywords": [
"moment",
"moment-js",
"time",
"date",
"datetime",
"cache",
"speed",
"performance",
"chicks"
],
"devDependencies": {
"browserify": "^13.0.0",
"babelify": "^7.2.0",
"babel-cli": "^6.9.0",
"babel-preset-es2015": "6.6.0"
},
"babel": {
"presets": ["es2015"]
}
}