UNPKG

6.08 kBJSONView Raw
1{
2 "name": "netlify-cli",
3 "description": "Netlify command line tool",
4 "version": "2.31.0",
5 "author": "Netlify Inc.",
6 "contributors": [
7 "Mathias Biilmann <matt@netlify.com> (https://twitter.com/biilmann)",
8 "David Calavera <david@netlify.com> (https://twitter.com/calavera)",
9 "David Wells <david.wells@netlify.com> (https://davidwells.io/)",
10 "Raees Iqbal <raees@netlify.com> (https://raeesbhatti.com/)",
11 "Bret Comnes <bcomnes@gmail.com> (https://bret.io)"
12 ],
13 "engines": {
14 "node": ">=8.12.0"
15 },
16 "files": [
17 "/bin",
18 "/npm-shrinkwrap.json",
19 "/oclif.manifest.json",
20 "/scripts/postinstall.js",
21 "/src/**/*.js"
22 ],
23 "homepage": "https://github.com/netlify/cli",
24 "keywords": [
25 "api",
26 "cli",
27 "netlify",
28 "static"
29 ],
30 "license": "MIT",
31 "repository": "netlify/cli",
32 "main": "src/index.js",
33 "bin": {
34 "ntl": "./bin/run",
35 "netlify": "./bin/run"
36 },
37 "bugs": {
38 "url": "https://github.com/netlify/cli/issues"
39 },
40 "scripts": {
41 "build": "run-s build:*",
42 "build:site": "cd site && npm install && npm run build",
43 "build:deptree": "depcruise --exclude \"^node_modules\" --output-type dot src | dot -T svg > site/dist/dependencygraph.svg",
44 "ci": "run-s test build",
45 "start": "node ./bin/run",
46 "test": "run-s test:*",
47 "ava": "ava --verbose",
48 "test:ava": "nyc --reporter=lcov ava --verbose && nyc report",
49 "test:lint": "eslint --fix \"{src,scripts}/**/*.js\"",
50 "test:prettier": "prettier --write --loglevel warn \"{src,scripts,docs,site/src,.circleci,.github}/**/*.{js,md,yml,json,html}\" \"site/*.{js,md}\" \"*.{js,md,yml,json,html}\"",
51 "test:cli-version": "npm run start -- --version",
52 "test:cli-help": "npm run start -- --help",
53 "docs": "node ./scripts/docs.js",
54 "watch": "nyc --reporter=lcov ava --watch",
55 "prepack": "oclif-dev manifest && npm prune --prod",
56 "postpack": "rm -f oclif.manifest.json && npm i",
57 "report": "nyc report --reporter=text-lcov | coveralls",
58 "version": "npm run docs && auto-changelog -p --template keepachangelog && git add README.md docs CHANGELOG.md",
59 "prepublishOnly": "git push && git push --tags && gh-release",
60 "update-semver": "npm --depth 9999 update",
61 "postinstall": "node ./scripts/postinstall.js"
62 },
63 "dependencies": {
64 "@netlify/build": "^0.1.7",
65 "@netlify/config": "^0.1.7",
66 "@netlify/zip-it-and-ship-it": "^0.3.1",
67 "@oclif/command": "^1.5.18",
68 "@oclif/config": "^1.13.2",
69 "@oclif/errors": "^1.1.2",
70 "@oclif/parser": "^3.8.4",
71 "@oclif/plugin-help": "^2.2.0",
72 "@oclif/plugin-not-found": "^1.1.4",
73 "@oclif/plugin-plugins": "^1.7.8",
74 "@octokit/rest": "^16.28.1",
75 "ansi-styles": "^3.2.1",
76 "ascii-table": "0.0.9",
77 "body-parser": "^1.19.0",
78 "boxen": "^4.1.0",
79 "chalk": "^2.4.2",
80 "chokidar": "^3.0.2",
81 "ci-info": "^2.0.0",
82 "clean-deep": "^3.0.2",
83 "cli-spinners": "^1.3.1",
84 "cli-ux": "^5.2.1",
85 "concordance": "^4.0.0",
86 "configstore": "^5.0.0",
87 "cookie": "^0.4.0",
88 "copy-template-dir": "^1.4.0",
89 "debug": "^4.1.1",
90 "dot-prop": "^5.1.0",
91 "envinfo": "^7.3.1",
92 "execa": "^2.0.3",
93 "express": "^4.17.1",
94 "express-logging": "^1.1.1",
95 "find-up": "^3.0.0",
96 "fs-extra": "^8.1.0",
97 "fuzzy": "^0.1.3",
98 "get-port": "^5.1.0",
99 "gh-release-fetch": "^1.0.3",
100 "git-repo-info": "^2.1.0",
101 "gitconfiglocal": "^2.1.0",
102 "http-proxy": "^1.17.0",
103 "http-proxy-middleware": "^0.20.0",
104 "inquirer": "^6.5.1",
105 "inquirer-autocomplete-prompt": "^1.0.1",
106 "is-docker": "^1.1.0",
107 "jwt-decode": "^2.2.0",
108 "lodash.get": "^4.4.2",
109 "lodash.isempty": "^4.4.0",
110 "lodash.isequal": "^4.5.0",
111 "lodash.merge": "^4.6.2",
112 "lodash.pick": "^4.4.0",
113 "lodash.sample": "^4.2.1",
114 "lodash.snakecase": "^4.1.1",
115 "log-symbols": "^2.2.0",
116 "make-dir": "^3.0.0",
117 "minimist": "^1.2.0",
118 "netlify": "^2.4.8",
119 "netlify-redirect-parser": "^2.2.0",
120 "netlify-redirector": "^0.1.0",
121 "node-fetch": "^2.6.0",
122 "npm-packlist": "^1.4.4",
123 "open": "^6.4.0",
124 "ora": "^3.4.0",
125 "p-wait-for": "^2.0.0",
126 "parse-github-url": "^1.0.2",
127 "parse-gitignore": "^1.0.1",
128 "precinct": "^6.1.2",
129 "prettyjson": "^1.2.1",
130 "random-item": "^1.0.0",
131 "read-pkg-up": "^6.0.0",
132 "require-package-name": "^2.0.1",
133 "resolve": "^1.12.0",
134 "safe-join": "^0.1.3",
135 "static-server": "^2.2.1",
136 "update-notifier": "^2.5.0",
137 "uuid": "^3.3.3",
138 "wait-port": "^0.2.2",
139 "wrap-ansi": "^6.0.0",
140 "write-file-atomic": "^3.0.0"
141 },
142 "devDependencies": {
143 "@oclif/dev-cli": "^1.22.2",
144 "@oclif/test": "^1.2.5",
145 "algoliasearch": "^3.34.0",
146 "auto-changelog": "^1.14.1",
147 "ava": "^1.4.1",
148 "body": "^5.1.0",
149 "chai": "^4.2.0",
150 "coveralls": "^3.0.4",
151 "dependency-check": "^3.4.1",
152 "dependency-cruiser": "^5.2.2",
153 "eslint": "^5.16.0",
154 "eslint-config-oclif": "^3.1.0",
155 "eslint-config-prettier": "^4.3.0",
156 "eslint-plugin-import": "^2.17.3",
157 "eslint-plugin-node": "^8.0.1",
158 "eslint-plugin-prettier": "^3.1.0",
159 "from2-string": "^1.1.0",
160 "gh-release": "^3.5.0",
161 "globby": "^10.0.1",
162 "husky": "^3.0.3",
163 "lint-staged": "^9.2.1",
164 "markdown-magic": "^0.1.25",
165 "mkdirp": "^0.5.1",
166 "mocha": "^6.2.0",
167 "nock": "^10.0.6",
168 "npm-run-all": "^4.1.5",
169 "nyc": "^14.1.1",
170 "prettier": "^1.18.2",
171 "strip-ansi": "^5.2.0",
172 "tempy": "^0.3.0"
173 },
174 "ava": {
175 "files": [
176 "src/**/*.test.js"
177 ],
178 "cache": true,
179 "concurrency": 5,
180 "failFast": false,
181 "failWithoutAssertions": false,
182 "tap": false,
183 "compileEnhancements": false,
184 "babel": false
185 },
186 "oclif": {
187 "bin": "netlify",
188 "commands": "./src/commands",
189 "plugins": [
190 "@oclif/plugin-not-found",
191 "@oclif/plugin-plugins",
192 "@oclif/plugin-help"
193 ],
194 "hooks": {
195 "init": [
196 "./src/hooks/init"
197 ],
198 "analytics": [
199 "./src/hooks/analytics"
200 ]
201 }
202 }
203}