mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-03 05:22:26 +08:00
4cc2207513
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
25 lines
981 B
JSON
25 lines
981 B
JSON
{
|
|
"name" : "underscore",
|
|
"description" : "JavaScript's functional programming helper library.",
|
|
"homepage" : "http://underscorejs.org",
|
|
"keywords" : ["util", "functional", "server", "client", "browser"],
|
|
"author" : "Jeremy Ashkenas <jeremy@documentcloud.org>",
|
|
"repository" : {"type": "git", "url": "git://github.com/jashkenas/underscore.git"},
|
|
"main" : "underscore.js",
|
|
"version" : "1.5.2",
|
|
"devDependencies": {
|
|
"phantomjs": "1.9.0-1"
|
|
},
|
|
"scripts": {
|
|
"test": "phantomjs test/vendor/runner.js test/index.html?noglobals=true",
|
|
"build": "uglifyjs underscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m --source-map underscore-min.map -o underscore-min.js",
|
|
"doc": "docco underscore.js"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "MIT",
|
|
"url": "https://raw.github.com/jashkenas/underscore/master/LICENSE"
|
|
}
|
|
],
|
|
"files" : ["underscore.js", "underscore-min.js", "LICENSE"]
|
|
}
|