UNPKG

987 BJSONView Raw
1{
2 "name": "extend",
3 "author": "Stefan Thomas <justmoon@members.fsf.org> (http://www.justmoon.net)",
4 "version": "3.0.2",
5 "description": "Port of jQuery.extend for node.js and the browser",
6 "main": "index",
7 "scripts": {
8 "pretest": "npm run lint",
9 "test": "npm run tests-only",
10 "posttest": "npm run coverage-quiet",
11 "tests-only": "node test",
12 "coverage": "covert test/index.js",
13 "coverage-quiet": "covert test/index.js --quiet",
14 "lint": "npm run jscs && npm run eslint",
15 "jscs": "jscs *.js */*.js",
16 "eslint": "eslint *.js */*.js"
17 },
18 "contributors": [
19 {
20 "name": "Jordan Harband",
21 "url": "https://github.com/ljharb"
22 }
23 ],
24 "keywords": [
25 "extend",
26 "clone",
27 "merge"
28 ],
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/justmoon/node-extend.git"
32 },
33 "dependencies": {},
34 "devDependencies": {
35 "@ljharb/eslint-config": "^12.2.1",
36 "covert": "^1.1.0",
37 "eslint": "^4.19.1",
38 "jscs": "^3.0.7",
39 "tape": "^4.9.1"
40 },
41 "license": "MIT"
42}