-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore!: Remove pre-built browser bundles (#13)
chore: Remove extra eslint settings in tests chore: Cleanup package.json chore: Update license years chore!: Upgrade each-props to v3.0.0
- Loading branch information
Showing
14 changed files
with
392 additions
and
2,573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Browerify output directories | ||
web | ||
test/web |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
coverage/ | ||
.nyc_output/ | ||
CHANGELOG.md | ||
web/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2016-2021 Takayuki Sato <[email protected]>, Blaine Bublitz <[email protected]>, and Eric Schoffstall <[email protected]> | ||
Copyright (c) 2016-2022 Takayuki Sato <[email protected]>, Blaine Bublitz <[email protected]>, and Eric Schoffstall <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,21 +5,15 @@ | |
"author": "Gulp Team <[email protected]> (https://gulpjs.com/)", | ||
"main": "index.js", | ||
"files": [ | ||
"index.js" | ||
"index.js", | ||
"LICENSE" | ||
], | ||
"scripts": { | ||
"lint": "eslint .", | ||
"pretest": "npm run lint", | ||
"test": "nyc mocha", | ||
"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 test && npm run web:build && node test/web/make.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/gulpjs/copy-props.git" | ||
"test": "nyc mocha --async-only" | ||
}, | ||
"repository": "gulpjs/copy-prop", | ||
"keywords": [ | ||
"object", | ||
"property", | ||
|
@@ -32,10 +26,6 @@ | |
"engines": { | ||
"node": ">= 10.13.0" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/gulpjs/copy-props/issues" | ||
}, | ||
"homepage": "https://github.com/gulpjs/copy-props#readme", | ||
"nyc": { | ||
"reporter": [ | ||
"lcov", | ||
|
@@ -46,17 +36,15 @@ | |
"singleQuote": true | ||
}, | ||
"dependencies": { | ||
"each-props": "^2.0.0", | ||
"each-props": "^3.0.0", | ||
"is-plain-object": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"browserify": "^17.0.0", | ||
"chai": "^4.3.4", | ||
"eslint": "^7.32.0", | ||
"eslint-config-gulp": "^5.0.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"expect": "^27.5.1", | ||
"mocha": "^8.4.0", | ||
"nyc": "^15.1.0", | ||
"uglify-js": "^3.14.2" | ||
"nyc": "^15.1.0" | ||
} | ||
} |
Oops, something went wrong.