wishthis/node_modules/node.extend/package.json

71 lines
1.6 KiB
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "node.extend",
"version": "2.0.2",
"description": "A port of jQuery.extend that actually works on node.js",
"keywords": [
"extend",
"jQuery",
"jQuery extend",
"clone",
"copy",
"inherit"
2022-01-21 08:28:41 +00:00
],
2022-04-08 10:55:35 +00:00
"author": "dreamerslab <ben@dreamerslab.com>",
2022-01-21 08:28:41 +00:00
"dependencies": {
"has": "^1.0.3",
"is": "^3.2.1"
},
"devDependencies": {
"@ljharb/eslint-config": "^13.0.0",
"covert": "^1.1.0",
"eslint": "^5.8.0",
"jscs": "^3.0.7",
"safe-publish-latest": "^1.1.2",
"tape": "^4.9.1"
},
2022-02-23 16:41:13 +00:00
"repository": {
"type": "git",
2022-04-08 10:55:35 +00:00
"url": "https://github.com/dreamerslab/node.extend.git"
2022-02-23 16:41:13 +00:00
},
2022-04-08 10:55:35 +00:00
"contributors": [
{
"name": "Jordan Harband",
"twitter": "https://twitter.com/ljharb"
}
],
"main": "index",
2022-01-21 08:28:41 +00:00
"scripts": {
2022-02-23 16:41:13 +00:00
"prepublish": "safe-publish-latest",
"pretest": "npm run lint",
"test": "npm run --silent tests-only",
2022-04-08 10:55:35 +00:00
"posttest": "npm run coverage-quiet",
"tests-only": "node test",
"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"
},
"engines": {
"node": ">=0.4.0"
2022-01-21 08:28:41 +00:00
},
"testling": {
"files": "test/index.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0..10.0",
"chrome/20.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest"
]
},
2022-04-08 10:55:35 +00:00
"license": "(MIT OR GPL-2.0)"
2022-01-21 08:28:41 +00:00
}