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.
137 lines
3.2 KiB
137 lines
3.2 KiB
{
|
|
"name": "now",
|
|
"version": "8.0.0-beta.2",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"test": "eslint .",
|
|
"prepublish": "webpack",
|
|
"dev": "webpack -w",
|
|
"precommit": "lint-staged",
|
|
"postinstall": "node download/install.js",
|
|
"prepublish": "in-install || (npm run prepare && cp /dev/null download/dist/now)",
|
|
"pack": "pkg dist/now.js -c package.json -o packed/now",
|
|
"prepare": "webpack --context download --config download/webpack.config.js"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint",
|
|
"prettier --write --single-quote --no-semi",
|
|
"git add"
|
|
]
|
|
},
|
|
"bin": {
|
|
"now": "download/dist/now"
|
|
},
|
|
"files": [
|
|
"download/dist",
|
|
"download/install.js"
|
|
],
|
|
"pkg": {
|
|
"scripts": [
|
|
"bin/*",
|
|
"lib/**/*"
|
|
],
|
|
"targets": [
|
|
"node7-alpine-x64",
|
|
"node7-linux-x64",
|
|
"node7-macos-x64",
|
|
"node7-win-x64"
|
|
]
|
|
},
|
|
"eslintIgnore": [
|
|
"src/providers/sh/legacy/**",
|
|
"download/**",
|
|
"dist"
|
|
],
|
|
"eslintConfig": {
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"sourceType": "script"
|
|
},
|
|
"parser": "babel-eslint",
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:flowtype/recommended"
|
|
],
|
|
"plugins": [
|
|
"flowtype"
|
|
],
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"func-names": [
|
|
"error",
|
|
"as-needed"
|
|
],
|
|
"no-console": 0,
|
|
"no-shadow": "error",
|
|
"no-extra-semi": 0
|
|
}
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-flow-comments"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"ansi-escapes": "2.0.0",
|
|
"archiver": "2.0.0",
|
|
"array-unique": "0.3.2",
|
|
"assert": "1.4.1",
|
|
"async-retry": "1.1.3",
|
|
"aws-sdk": "2.98.0",
|
|
"babel-core": "6.25.0",
|
|
"babel-eslint": "7.2.3",
|
|
"babel-loader": "7.1.1",
|
|
"babel-plugin-transform-async-to-generator": "6.24.1",
|
|
"babel-plugin-transform-flow-comments": "6.22.0",
|
|
"babel-plugin-transform-runtime": "6.23.0",
|
|
"babel-preset-es2015": "6.24.1",
|
|
"bytes": "2.5.0",
|
|
"chalk": "2.1.0",
|
|
"clipboardy": "1.1.4",
|
|
"convert-stream": "1.0.2",
|
|
"death": "1.1.0",
|
|
"debug": "3.0.0",
|
|
"deployment-type": "1.0.1",
|
|
"docker-file-parser": "1.0.2",
|
|
"dotenv": "4.0.0",
|
|
"download": "6.2.5",
|
|
"email-prompt": "0.3.1",
|
|
"email-validator": "1.1.1",
|
|
"eslint": "4.4.1",
|
|
"eslint-plugin-flowtype": "2.35.0",
|
|
"flow-babel-webpack-plugin": "1.1.0",
|
|
"fs-extra": "4.0.1",
|
|
"fs-extra-promise": "1.0.1",
|
|
"glob": "7.1.2",
|
|
"ignore": "3.3.3",
|
|
"ini": "1.3.4",
|
|
"inquirer": "3.2.1",
|
|
"is-url": "1.2.2",
|
|
"lint-staged": "4.0.3",
|
|
"minimist": "1.2.0",
|
|
"mkdirp-promise": "5.0.1",
|
|
"ms": "2.0.0",
|
|
"node-fetch": "1.7.2",
|
|
"opn": "5.1.0",
|
|
"ora": "1.3.0",
|
|
"pipe-streams-to-promise": "0.2.0",
|
|
"pre-commit": "1.2.2",
|
|
"prettier": "1.5.3",
|
|
"progress": "2.0.0",
|
|
"resumer": "0.0.0",
|
|
"shebang-loader": "0.0.1",
|
|
"socket.io-client": "2.0.3",
|
|
"split-array": "1.0.1",
|
|
"strip-ansi": "4.0.0",
|
|
"tar-fs": "1.15.3",
|
|
"then-sleep": "1.0.1",
|
|
"tmp-promise": "1.0.3",
|
|
"uid-promise": "1.0.0",
|
|
"webpack": "3.5.4",
|
|
"webpack-node-externals": "1.6.0"
|
|
}
|
|
}
|
|
|