forked from commenthol/serialize-to-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix: linting - fix: partial node deprecated api
- Loading branch information
1 parent
0585897
commit 89e9d49
Showing
9 changed files
with
72 additions
and
46 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,5 +1,6 @@ | ||
node_modules | ||
coverage/ | ||
.nyc_output/ | ||
doc/ | ||
tmp/ | ||
*.log | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
package-lock=false |
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
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 |
---|---|---|
|
@@ -11,21 +11,21 @@ | |
"bugs": { | ||
"url": "https://github.com/commenthol/serialize-to-js/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/commenthol/serialize-to-js.git" | ||
}, | ||
"license": "MIT", | ||
"author": "commenthol <[email protected]>", | ||
"main": "lib", | ||
"directories": { | ||
"doc": "doc", | ||
"test": "test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/commenthol/serialize-to-js.git" | ||
}, | ||
"scripts": { | ||
"all": "npm run lint && npm test", | ||
"clean": "rimraf doc coverage node_modules *.tgz", | ||
"cover": "nyc -r text -r html npm test", | ||
"clean": "rimraf doc coverage .nyc_output node_modules *.tgz", | ||
"coverage": "nyc -r text -r html npm test", | ||
"doc": "jsdox -o doc lib/*.js", | ||
"lint": "eslint '**/*.js'", | ||
"prepublishOnly": "npm run all", | ||
|
@@ -42,18 +42,19 @@ | |
} | ||
}, | ||
"dependencies": { | ||
"js-beautify": "^1.7.5", | ||
"safer-eval": "^1.2.3" | ||
"js-beautify": "^1.8.9", | ||
"safer-eval": "^1.3.0" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^4.18.2", | ||
"eslint-config-standard": "^11.0.0", | ||
"eslint-plugin-import": "^2.9.0", | ||
"eslint-plugin-node": "^6.0.1", | ||
"eslint-plugin-promise": "^3.6.0", | ||
"eslint-plugin-standard": "^3.0.1", | ||
"istanbul": "^0.4.5", | ||
"mocha": "^5.0.1", | ||
"eslint": "^5.11.1", | ||
"eslint-config-standard": "^12.0.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-node": "^8.0.0", | ||
"eslint-plugin-promise": "^4.0.1", | ||
"eslint-plugin-standard": "^4.0.0", | ||
"jsdox": "^0.4.10", | ||
"mocha": "^5.2.0", | ||
"nyc": "^13.1.0", | ||
"rimraf": "^2.6.2" | ||
}, | ||
"engines": { | ||
|
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
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