badgen.net/package.json

42 wiersze
1.3 KiB
JSON
Czysty Zwykły widok Historia

2018-06-26 05:39:49 +00:00
{
"name": "badgen-service",
"private": true,
"description": "Badge generating service",
"author": "Amio <amio.cn@gmail.com>",
"license": "ISC",
"scripts": {
"lint": "standard",
"dev": "micro-dev service.js -s",
2018-08-03 14:40:44 +00:00
"pretest": "npm run lint",
2018-07-31 09:51:37 +00:00
"test": "tap test/*.js --reporter spec -j12",
"start": "node service.js",
"predeploy": "now -T amio inspect badgen.net && now rm badgen-service --safe -y -T amio || true",
2018-08-16 06:17:51 +00:00
"deploy": "now -T amio -e API_HOST='https://api.badgen.net' -e GH_TOKEN='@badgen-gh-token' -e SENTRY_URI='@badgen-sentry-uri' -e TRACKING_GA='@badgen-tracking-ga'",
2018-08-29 06:47:30 +00:00
"postdeploy": "now -T amio alias",
"canary": "now -T amio -e GH_TOKEN='@badgen-gh-token' && now -T amio alias badgen-canary"
2018-06-26 05:39:49 +00:00
},
"dependencies": {
2018-07-15 13:13:24 +00:00
"axios": "^0.18.0",
2018-08-31 06:19:40 +00:00
"badgen": "^2.4.5",
"byte-size": "^4.0.3",
2018-08-04 11:52:36 +00:00
"cheerio": "^1.0.0-rc.2",
"chrome-webstore": "^1.0.0",
"date-fns": "^1.29.0",
"got": "^9.2.1",
"micro": "^9.3.3",
"micro-fork": "^0.1.0",
2018-07-10 08:17:58 +00:00
"millify": "^2.0.1",
"raven": "^2.6.4",
build(deps): bump semver from 5.5.0 to 5.5.1 (#115) Bumps [semver](https://github.com/npm/node-semver) from 5.5.0 to 5.5.1. <details> <summary>Commits</summary> - [`89bfa00`](https://github.com/npm/node-semver/commit/89bfa00a24b93cb7d10b6a89486e1f927837952f) 5.5.1 - [`acb44dd`](https://github.com/npm/node-semver/commit/acb44ddf2aef5855a1eb77fedc6b2e2c0868f7c8) Update tap version - [`448b0b3`](https://github.com/npm/node-semver/commit/448b0b3efc6dbede1a9696c4469ae74f8e482a02) Update tap version - [`6069fe7`](https://github.com/npm/node-semver/commit/6069fe702002ae7b257b01fb8dade0f22bf8bbee) Merge pull request [#247](https://github-redirect.dependabot.com/npm/node-semver/issues/247) from steveklabnik/patch-1 - [`43ff1c7`](https://github.com/npm/node-semver/commit/43ff1c74cd4e604aa93ffd72299422edfac5d67e) Fix grammar for ranges - See full diff in [compare view](https://github.com/npm/node-semver/compare/v5.5.0...v5.5.1) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=semver&package-manager=npm_and_yarn&previous-version=5.5.0&new-version=5.5.1)](https://dependabot.com/compatibility-score.html?dependency-name=semver&package-manager=npm_and_yarn&previous-version=5.5.0&new-version=5.5.1) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot. </details>
2018-08-18 12:24:01 +00:00
"semver": "^5.5.1",
"serve-handler": "^5.0.2",
2018-08-22 05:55:06 +00:00
"serve-marked": "^0.3.3",
2018-07-26 13:53:45 +00:00
"xml2js": "^0.4.19"
2018-06-26 05:39:49 +00:00
},
"devDependencies": {
"micro-dev": "^3.0.0",
"standard": "^12.0.1",
"supertest": "^3.2.0",
2018-07-31 09:51:37 +00:00
"tap": "^12.0.1"
}
2018-06-26 05:39:49 +00:00
}