wishthis/node_modules/copy-props/package.json

52 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "copy-props",
"version": "2.0.5",
"description": "Copy properties deeply between two objects.",
"main": "index.js",
"files": [
"index.js"
2022-01-21 08:28:41 +00:00
],
2022-04-08 10:55:35 +00:00
"scripts": {
"lint": "eslint .",
"test": "mocha",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm test",
"coveralls": "nyc --reporter=text-lcov npm test | coveralls",
"web:build": "browserify index.js --standalone copyProps -o web/copy-props.js && cd web && uglifyjs copy-props.js --compress --mangle -o copy-props.min.js --source-map url=copy-props.min.js.map",
"chrome:install": "npm i --no-save mocha-chrome",
"chrome:test": "mocha-chrome test/web/browser-test.html",
"build": "npm run lint && npm run coverage && npm run web:build && node test/web/make.js"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/gulpjs/copy-props.git"
2022-02-23 16:41:13 +00:00
},
2022-04-08 10:55:35 +00:00
"keywords": [
"object",
"property",
"copy",
"deep",
"map",
"convert"
],
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
"license": "MIT",
2022-01-21 08:28:41 +00:00
"bugs": {
"url": "https://github.com/gulpjs/copy-props/issues"
},
2022-04-08 10:55:35 +00:00
"homepage": "https://github.com/gulpjs/copy-props#readme",
2022-01-21 08:28:41 +00:00
"dependencies": {
"each-props": "^1.3.2",
"is-plain-object": "^5.0.0"
},
"devDependencies": {
"browserify": "^16.5.2",
"chai": "^3.5.0",
"coveralls": "^3.1.0",
"eslint": "^7.9.0",
"eslint-config-gulp": "^5.0.1",
"mocha": "^3.5.3",
"nyc": "^15.1.0",
"uglify-js": "^3.10.4"
2022-04-08 10:55:35 +00:00
}
2022-01-21 08:28:41 +00:00
}