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.
104 lines
2.3 KiB
104 lines
2.3 KiB
{
|
|
"name": "now",
|
|
"version": "4.6.0",
|
|
"description": "The command line interface for Now",
|
|
"repository": "zeit/now-cli",
|
|
"license": "MIT",
|
|
"files": [
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"precommit": "npm run lint",
|
|
"lint": "xo",
|
|
"test": "npm run build && npm run lint && ava",
|
|
"prepublish": "npm run build",
|
|
"build": "./build.sh",
|
|
"pack": "npm run build && npm run pkg",
|
|
"pkg": "pkg . --out-dir packed -t node7-alpine-x64,node7-linux-x64,node7-macos-x64,node7-win-x64"
|
|
},
|
|
"pkg": {
|
|
"scripts": [
|
|
"./build/bin/*",
|
|
"./build/lib/**/*"
|
|
]
|
|
},
|
|
"bin": {
|
|
"now": "./build/bin/now.js"
|
|
},
|
|
"ava": {
|
|
"failFast": true,
|
|
"files": [
|
|
"test/*.js"
|
|
]
|
|
},
|
|
"xo": {
|
|
"esnext": true,
|
|
"space": true,
|
|
"semicolon": false,
|
|
"ignores": [
|
|
"packed/**",
|
|
"test/_fixtures/**"
|
|
],
|
|
"rules": {
|
|
"import/no-unassigned-import": 0,
|
|
"import/no-dynamic-require": 0,
|
|
"import/no-unresolved": 0,
|
|
"max-depth": 0,
|
|
"max-params": 0,
|
|
"no-use-before-define": 0,
|
|
"complexity": 0,
|
|
"no-control-regex": 0
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=6.9.0"
|
|
},
|
|
"dependencies": {
|
|
"@google/maps": "0.3.1",
|
|
"ansi-escapes": "1.4.0",
|
|
"ansi-regex": "2.1.1",
|
|
"arr-flatten": "1.0.1",
|
|
"array-unique": "0.3.2",
|
|
"async-retry": "0.3.0",
|
|
"async-to-gen": "1.3.2",
|
|
"bytes": "2.4.0",
|
|
"chalk": "1.1.3",
|
|
"copy-paste": "1.3.0",
|
|
"credit-card": "3.0.1",
|
|
"cross-spawn": "5.1.0",
|
|
"docker-file-parser": "1.0.1",
|
|
"dotenv": "4.0.0",
|
|
"download": "5.0.3",
|
|
"email-prompt": "0.2.0",
|
|
"email-validator": "1.0.7",
|
|
"fs-promise": "2.0.0",
|
|
"glob": "7.1.1",
|
|
"ignore": "3.2.4",
|
|
"ini": "1.3.4",
|
|
"inquirer": "3.0.5",
|
|
"is-url": "1.2.2",
|
|
"minimist": "1.2.0",
|
|
"ms": "0.7.2",
|
|
"node-fetch": "1.6.3",
|
|
"node-version": "1.0.0",
|
|
"opn": "4.0.2",
|
|
"ora": "1.1.0",
|
|
"progress": "1.1.8",
|
|
"psl": "1.1.16",
|
|
"resumer": "0.0.0",
|
|
"socket.io-client": "1.7.3",
|
|
"split-array": "1.0.1",
|
|
"strip-ansi": "3.0.1",
|
|
"stripe": "4.15.0",
|
|
"text-table": "0.2.0",
|
|
"tmp-promise": "1.0.3",
|
|
"update-notifier": "2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"alpha-sort": "2.0.0",
|
|
"ava": "0.18.2",
|
|
"husky": "0.13.1",
|
|
"pkg": "3.0.0-beta.27",
|
|
"xo": "0.17.1"
|
|
}
|
|
}
|
|
|