UNPKG

4.47 kBJSONView Raw
1{
2 "name": "netlify-cli",
3 "description": "Netlify command line tool",
4 "version": "2.11.6",
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 "Bret Comnes <bcomnes@gmail.com> (https://bret.io)"
11 ],
12 "scripts": {
13 "build": "run-s build:*",
14 "build:site": "cd site && npm install && npm run build",
15 "build:deptree": "depcruise --exclude '^node_modules' --output-type dot src | dot -T svg > site/dist/dependencygraph.svg",
16 "ci": "run-s test build",
17 "start": "node ./bin/run",
18 "test": "run-s test:*",
19 "test:ava": "nyc --reporter=lcov ava --verbose && nyc report",
20 "test:lint": "eslint src",
21 "test:deps": "dependency-check ./package.json --entry \"src/**/!(*.test).js\" --unused --missing --no-dev --no-peer -i @oclif/plugin-not-found -i @oclif/config -i @oclif/plugin-help -i @oclif/plugin-plugins -i netlify-dev-plugin",
22 "watch": "nyc --reporter=lcov ava --watch",
23 "prepack": "oclif-dev manifest",
24 "postpack": "rm -f oclif.manifest.json",
25 "report": "nyc report --reporter=text-lcov | coveralls",
26 "version": "node ./scripts/docs.js && auto-changelog -p --template keepachangelog && git add README.md docs CHANGELOG.md",
27 "prepublishOnly": "git push && git push --tags && gh-release",
28 "update-semver": "npm --depth 9999 update"
29 },
30 "ava": {
31 "files": [
32 "src/**/*.test.js"
33 ],
34 "cache": true,
35 "concurrency": 5,
36 "failFast": false,
37 "failWithoutAssertions": false,
38 "tap": false,
39 "compileEnhancements": false,
40 "babel": false
41 },
42 "bin": {
43 "ntl": "./bin/run",
44 "netlify": "./bin/run"
45 },
46 "bugs": {
47 "url": "https://github.com/netlify/cli/issues"
48 },
49 "dependencies": {
50 "@iarna/toml": "^2.2.3",
51 "@oclif/command": "^1.5.12",
52 "@oclif/config": "^1.12.12",
53 "@oclif/errors": "^1.1.2",
54 "@oclif/plugin-help": "^2.1.6",
55 "@oclif/plugin-not-found": "^1.1.4",
56 "@oclif/plugin-plugins": "^1.7.8",
57 "@octokit/rest": "^16.23.4",
58 "ansi-styles": "^3.2.1",
59 "ascii-table": "0.0.9",
60 "chalk": "^2.4.2",
61 "ci-info": "^2.0.0",
62 "clean-deep": "^3.0.2",
63 "cli-spinners": "^1.3.1",
64 "cli-ux": "^5.2.1",
65 "concordance": "^4.0.0",
66 "configstore": "^4.0.0",
67 "dot-prop": "^4.2.0",
68 "find-up": "^3.0.0",
69 "git-remote-origin-url": "^2.0.0",
70 "git-repo-info": "^2.1.0",
71 "inquirer": "^6.2.2",
72 "is-docker": "^1.1.0",
73 "lodash.get": "^4.4.2",
74 "lodash.isempty": "^4.4.0",
75 "lodash.isequal": "^4.5.0",
76 "lodash.merge": "^4.6.1",
77 "lodash.snakecase": "^4.1.1",
78 "log-symbols": "^2.2.0",
79 "make-dir": "^2.1.0",
80 "netlify": "^2.4.1",
81 "netlify-dev-plugin": "^1.0.7",
82 "node-fetch": "^2.2.0",
83 "ora": "^3.4.0",
84 "p-wait-for": "^2.0.0",
85 "parse-github-url": "^1.0.2",
86 "prettyjson": "^1.2.1",
87 "random-item": "^1.0.0",
88 "update-notifier": "^2.5.0",
89 "uuid": "^3.3.2",
90 "write-file-atomic": "^2.4.2"
91 },
92 "devDependencies": {
93 "@oclif/dev-cli": "^1.22.0",
94 "auto-changelog": "^1.12.0",
95 "ava": "^1.4.1",
96 "body": "^5.1.0",
97 "coveralls": "^3.0.2",
98 "dependency-check": "^3.3.0",
99 "dependency-cruiser": "^4.15.3",
100 "eslint": "^5.16.0",
101 "eslint-config-prettier": "^4.1.0",
102 "eslint-plugin-import": "^2.16.0",
103 "eslint-plugin-node": "^8.0.1",
104 "eslint-plugin-prettier": "^3.0.1",
105 "from2-string": "^1.1.0",
106 "gh-release": "^3.5.0",
107 "markdown-magic": "^0.1.25",
108 "mkdirp": "^0.5.1",
109 "npm-run-all": "^4.1.3",
110 "nyc": "^13.3.0",
111 "prettier": "^1.16.4"
112 },
113 "engines": {
114 "node": ">=8.0.0"
115 },
116 "files": [
117 "/bin",
118 "/npm-shrinkwrap.json",
119 "/oclif.manifest.json",
120 "/src/**/*.js"
121 ],
122 "homepage": "https://github.com/netlify/cli",
123 "keywords": [
124 "api",
125 "cli",
126 "netlify",
127 "static"
128 ],
129 "license": "MIT",
130 "main": "src/index.js",
131 "oclif": {
132 "bin": "netlify",
133 "commands": "./src/commands",
134 "plugins": [
135 "@oclif/plugin-not-found",
136 "@oclif/plugin-plugins",
137 "@oclif/plugin-help",
138 "netlify-dev-plugin"
139 ],
140 "hooks": {
141 "init": [
142 "./src/hooks/init"
143 ],
144 "analytics": [
145 "./src/hooks/analytics",
146 "./src/hooks/hooks-two"
147 ]
148 }
149 },
150 "repository": "netlify/cli"
151}