-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: hook up ci to publish to npm (#226)
* chore: add missing fields to package.json * feat: add postlight org scope to package name * feat: automate npm publish * test: npm publish without filters * fix: add docker image * test: change directory * test: add working directory * fix: defaults syntax * test: add workspace * fix: attach workspace * fix: use standard mercury email * fix: use ISO time format and preserve original timezone offset * fix: do not match time zone offset * chore: move babel runtime-corejs2 to prod deps * chore: uncomment config to deploy on git tag * feat: publish to npm public * adding browser-request It doesn't seem to impact the build, but technically it should be there so for good measure, why not... * chore: roll version back to original state
- Loading branch information
1 parent
663cc45
commit 5c0325f
Showing
5 changed files
with
83 additions
and
32 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
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,8 +1,24 @@ | ||
{ | ||
"name": "mercury-parser", | ||
"name": "@postlight/mercury-parser", | ||
"version": "1.0.13", | ||
"description": "", | ||
"repository": "github:postlight/mercury-parser", | ||
"description": "Mercury transforms web pages into clean text. Publishers and programmers use it to make the web make sense, and readers use it to read any web article comfortably.", | ||
"author": "Postlight <[email protected]>", | ||
"homepage": "https://mercury.postlight.com", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/postlight/mercury-parser.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/postlight/mercury-parser/issues" | ||
}, | ||
"keywords": [ | ||
"mercury", | ||
"parser", | ||
"reader", | ||
"web", | ||
"content" | ||
], | ||
"main": "./dist/mercury.js", | ||
"scripts": { | ||
"lint": "eslint . --fix", | ||
|
@@ -25,15 +41,15 @@ | |
"add-contributor": "all-contributors add", | ||
"generate-contributors": "all-contributors generate" | ||
}, | ||
"author": "Postlight", | ||
"license": "ISC", | ||
"engines": { | ||
"node": ">=8.10" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.0.0", | ||
"@babel/plugin-transform-runtime": "^7.0.0", | ||
"@babel/polyfill": "^7.0.0", | ||
"@babel/preset-env": "^7.0.0", | ||
"@babel/runtime": "^7.0.0", | ||
"@babel/runtime-corejs2": "^7.2.0", | ||
"@jesses/circle-github-bot": "^2.1.0", | ||
"@octokit/rest": "^16.9.0", | ||
"all-contributors-cli": "^5.10.0", | ||
|
@@ -87,22 +103,28 @@ | |
"watchify": "^3.11.0" | ||
}, | ||
"dependencies": { | ||
"browser-request": "postlight/browser-request#feat-add-headers-to-response", | ||
"browser-request": "github:postlight/browser-request#feat-add-headers-to-response", | ||
"cheerio": "^0.22.0", | ||
"difflib": "postlight/difflib.js", | ||
"difflib": "github:postlight/difflib.js", | ||
"ellipsize": "0.1.0", | ||
"iconv-lite": "0.4.24", | ||
"jquery": "^3.3.1", | ||
"moment": "^2.23.0", | ||
"moment-parseformat": "3.0.0", | ||
"moment-timezone": "0.5.23", | ||
"request": "czardoz/request", | ||
"request": "github:czardoz/request", | ||
"request-promise": "^4.2.2", | ||
"string-direction": "^0.1.2", | ||
"url": "^0.11.0", | ||
"valid-url": "^1.0.9", | ||
"wuzzy": "^0.1.3" | ||
"wuzzy": "^0.1.3", | ||
"@babel/runtime-corejs2": "^7.2.0" | ||
}, | ||
"bundleDependencies": [ | ||
"jquery", | ||
"moment-timezone", | ||
"browser-request" | ||
], | ||
"browser": { | ||
"main": "./dist/mercury.web.js", | ||
"cheerio": "./src/shims/cheerio-query", | ||
|
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