You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
1.9 KiB

9 years ago
{
"name": "now",
9 years ago
"version": "0.18.1",
9 years ago
"description": "realtime instant node.js deployment with one command",
9 years ago
"readme": "",
9 years ago
"main": "./build/lib/index",
"files": [
"build"
9 years ago
],
"bin": {
"now": "./build/bin/now"
},
"dependencies": {
"ansi-escapes": "1.4.0",
9 years ago
"arr-flatten": "1.0.1",
"array-unique": "0.2.1",
"babel-runtime": "6.5.0",
"bytes": "2.3.0",
"chalk": "1.1.3",
"copy-paste": "1.2.0",
"cross-spawn-async": "2.2.4",
"fs-promise": "0.5.0",
"graceful-fs": "4.1.4",
9 years ago
"minimatch": "3.0.0",
"minimist": "1.2.0",
"ms": "0.7.1",
"node-fetch": "1.5.3",
"progress": "1.1.8",
9 years ago
"resumer": "0.0.0",
"socket.io-client": "1.4.6",
"split-array": "1.0.1",
"text-table": "0.2.0",
"spdy": "3.3.3",
"email-validator": "1.0.4",
"email-prompt": "0.1.8",
Add zeit world (wip) (#67) * alias: clean up the alias (trailing and leading dots) * alias: improve domain validation and implement zeit.world * is-zeit-world: detect valid zeit.world nameservers * package: add domain-regex dep * now-alias: fix edge case with older aliases or removed deployments * alias: move listing aliases and retrying to `index` * index: generalize retrying and alias listing * alias: remove `retry` dep * now-remove: print out alias warning * typo * now-alias: prevent double lookup * now: add domain / domains command * now-deploy: document `domain` * agent: allow for tls-less, agent-less requests while testing * is-zeit-world: fix nameserver typo * dns: as-promised * now-alias: fix `rm` table * now-alias: no longer admit argument after `alias ls` @rase- please verify this, but I think it was overkill? * admit "aliases" as an alternative to alias * make domain name resolution, creation and verification reusable * index: add nameserver discover, domain setup functions (reused between alias and domains) * now-domains: add command * domains: commands * package: bump eslint * now-alias: simplify sort * now-domains: sort list * now-domains: improve deletion and output of empty elements * errors: improve output * domains: add more debug output * domains: extra logging * errors: improve logging * now-remove: improve `now rm` error handling * index: more reasonable retrying * alias: support empty dns configurations * dns: remove ns fn * alias: improve post-dns-editing verification * index: remove unneeded dns lookup * index: implement new `getNameservers` * index: customizable retries * alias: improve error * improve error handling and cert retrying * customizable retries * alias: better error handling * alias: display both error messages * better error handling * improve error handling for certificate verification errors * alias: set up a `*` CNAME to simplify further aliases * alias: fewer retries for certs, more spaced out (prevent rate limiting issues) * alias: ultimate error handling * add whois fallback * adjust timer labels for whois fallback * index: whois fallback also upon 500 errors * alias: fix error message * fix duplicate aliases declaration
9 years ago
"async-retry": "0.2.1",
"domain-regex": "0.0.1"
9 years ago
},
"devDependencies": {
"alpha-sort": "1.0.2",
"ava": "0.15.1",
"babel-eslint": "6.0.4",
"babel-plugin-transform-runtime": "6.9.0",
"babel-plugin-syntax-async-functions": "6.8.0",
"babel-plugin-transform-async-to-generator": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-register": "6.9.0",
9 years ago
"del": "2.2.0",
"eslint-config-standard": "5.3.1",
9 years ago
"eslint-plugin-standard": "1.3.2",
"gulp": "3.9.1",
9 years ago
"gulp-babel": "6.1.2",
"gulp-eslint": "2.0.0",
9 years ago
"gulp-ext": "1.0.0",
9 years ago
"gulp-task-listing": "1.0.1",
9 years ago
"gulp-uglify": "1.5.3",
Add zeit world (wip) (#67) * alias: clean up the alias (trailing and leading dots) * alias: improve domain validation and implement zeit.world * is-zeit-world: detect valid zeit.world nameservers * package: add domain-regex dep * now-alias: fix edge case with older aliases or removed deployments * alias: move listing aliases and retrying to `index` * index: generalize retrying and alias listing * alias: remove `retry` dep * now-remove: print out alias warning * typo * now-alias: prevent double lookup * now: add domain / domains command * now-deploy: document `domain` * agent: allow for tls-less, agent-less requests while testing * is-zeit-world: fix nameserver typo * dns: as-promised * now-alias: fix `rm` table * now-alias: no longer admit argument after `alias ls` @rase- please verify this, but I think it was overkill? * admit "aliases" as an alternative to alias * make domain name resolution, creation and verification reusable * index: add nameserver discover, domain setup functions (reused between alias and domains) * now-domains: add command * domains: commands * package: bump eslint * now-alias: simplify sort * now-domains: sort list * now-domains: improve deletion and output of empty elements * errors: improve output * domains: add more debug output * domains: extra logging * errors: improve logging * now-remove: improve `now rm` error handling * index: more reasonable retrying * alias: support empty dns configurations * dns: remove ns fn * alias: improve post-dns-editing verification * index: remove unneeded dns lookup * index: implement new `getNameservers` * index: customizable retries * alias: improve error * improve error handling and cert retrying * customizable retries * alias: better error handling * alias: display both error messages * better error handling * improve error handling for certificate verification errors * alias: set up a `*` CNAME to simplify further aliases * alias: fewer retries for certs, more spaced out (prevent rate limiting issues) * alias: ultimate error handling * add whois fallback * adjust timer labels for whois fallback * index: whois fallback also upon 500 errors * alias: fix error message * fix duplicate aliases declaration
9 years ago
"eslint": "2.12.0",
"eslint-plugin-promise": "1.3.2",
9 years ago
"estraverse-fb": "1.3.1"
9 years ago
},
"scripts": {
9 years ago
"test": "ava",
9 years ago
"prepublish": "gulp compile"
9 years ago
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime",
"syntax-async-functions",
"transform-async-to-generator"
]
},
"ava": {
"failFast": true,
"files": [
"test/*.js"
],
"require": [
"babel-register"
]
}
}