2016-03-11 00:48:53 +00:00
|
|
|
{
|
2017-04-21 08:10:07 +00:00
|
|
|
"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.8.3",
|
2016-03-11 00:48:53 +00:00
|
|
|
"devDependencies": {
|
2017-04-21 08:10:07 +00:00
|
|
|
"coveralls": "^2.11.2",
|
|
|
|
"docco": "*",
|
|
|
|
"eslint": "1.10.x",
|
|
|
|
"gzip-size-cli": "^1.0.0",
|
|
|
|
"karma": "^0.13.13",
|
|
|
|
"karma-qunit": "~0.1.4",
|
|
|
|
"nyc": "^2.1.3",
|
|
|
|
"pretty-bytes-cli": "^1.0.0",
|
|
|
|
"qunit-cli": "~0.2.0",
|
|
|
|
"qunitjs": "^1.18.0",
|
|
|
|
"uglify-js": "2.4.x"
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-04-21 08:10:07 +00:00
|
|
|
"test": "npm run test-node && npm run lint",
|
|
|
|
"coverage": "nyc npm run test-node && nyc report",
|
|
|
|
"coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov | coveralls",
|
|
|
|
"lint": "eslint underscore.js test/*.js",
|
|
|
|
"test-node": "qunit-cli test/*.js",
|
|
|
|
"test-browser": "npm i karma-phantomjs-launcher && karma start",
|
|
|
|
"minify": "uglifyjs underscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m",
|
|
|
|
"build": "npm run minify -- --source-map underscore-min.map --source-map-url \" \" -o underscore-min.js",
|
|
|
|
"doc": "docco underscore.js",
|
|
|
|
"weight": "npm run minify | gzip-size | pretty-bytes"
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
2017-04-21 08:10:07 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"files": [
|
|
|
|
"underscore.js",
|
|
|
|
"underscore-min.js",
|
|
|
|
"underscore-min.map"
|
|
|
|
]
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|