Interface optimizations

moment js update
This commit is contained in:
RainLoop Team 2014-04-30 20:24:45 +04:00
parent be8c186f87
commit f36cb72b82
104 changed files with 5869 additions and 1180 deletions

View file

@ -1,6 +1,6 @@
{
"name": "moment",
"version": "2.3.1",
"version": "2.6.0",
"description": "Parse, manipulate, and display dates.",
"homepage": "http://momentjs.com",
"author": "Iskren Ivov Chernev <iskren.chernev@gmail.com> (https://github.com/ichernev)",
@ -8,7 +8,7 @@
"Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)",
"Rocky Meza (http://rockymeza.com)",
"Matt Johnson <mj1856@hotmail.com> (http://codeofmatt.com)",
"Isaac Cambron <isaac@isaaccambron.com> (http://drunkencoder.net/)"
"Isaac Cambron <isaac@isaaccambron.com> (http://isaaccambron.com)"
],
"keywords": [
"moment",
@ -37,20 +37,36 @@
"type" : "MIT"
}
],
"devDependencies" : {
"uglify-js" : "latest",
"grunt" : "latest",
"nodeunit" : "latest",
"grunt-contrib-jshint" : "latest",
"grunt-contrib-nodeunit" : "latest",
"grunt-contrib-concat" : "latest",
"grunt-contrib-uglify" : "latest",
"grunt-contrib-watch" : "latest",
"grunt-lib-legacyhelpers" : "latest"
},
"devDependencies": {
"uglify-js": "latest",
"grunt": "latest",
"nodeunit": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-nodeunit": "latest",
"grunt-contrib-concat": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-watch": "latest",
"grunt-env": "latest",
"grunt-karma": "latest",
"load-grunt-tasks": "latest",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-firefox-launcher": "latest",
"karma-nodeunit": "latest",
"karma-sauce-launcher": "latest"
},
"scripts": {
"test": "grunt"
"test": "grunt test:node"
},
"ender": "./ender.js",
"dojoBuild": "package.js"
"dojoBuild": "package.js",
"jspm": {
"files": ["moment.js", "lang"],
"map": {
"moment": "./moment"
},
"buildConfig": {
"uglify": true
}
}
}