wallet-core/node_modules/extend/package.json

44 lines
988 B
JSON
Raw Normal View History

2016-10-10 03:43:44 +02:00
{
2016-11-03 01:33:53 +01:00
"name": "extend",
"author": "Stefan Thomas <justmoon@members.fsf.org> (http://www.justmoon.net)",
2017-05-24 15:10:37 +02:00
"version": "3.0.1",
2016-11-03 01:33:53 +01:00
"description": "Port of jQuery.extend for node.js and the browser",
"main": "index",
"scripts": {
2017-05-24 15:10:37 +02:00
"pretest": "npm run lint",
"test": "npm run tests-only",
"posttest": "npm run coverage-quiet",
"tests-only": "node test",
2016-11-03 01:33:53 +01:00
"coverage": "covert test/index.js",
"coverage-quiet": "covert test/index.js --quiet",
"lint": "npm run jscs && npm run eslint",
"jscs": "jscs *.js */*.js",
"eslint": "eslint *.js */*.js"
},
"contributors": [
{
"name": "Jordan Harband",
"url": "https://github.com/ljharb"
}
],
"keywords": [
"extend",
"clone",
"merge"
],
"repository": {
"type": "git",
"url": "https://github.com/justmoon/node-extend.git"
},
"dependencies": {},
"devDependencies": {
2017-05-24 15:10:37 +02:00
"tape": "^4.6.3",
2016-11-03 01:33:53 +01:00
"covert": "^1.1.0",
2017-05-24 15:10:37 +02:00
"jscs": "^3.0.7",
"eslint": "^3.19.0",
"@ljharb/eslint-config": "^11.0.0"
2016-11-03 01:33:53 +01:00
},
"license": "MIT"
2016-10-10 03:43:44 +02:00
}
2016-11-03 01:33:53 +01:00