UNPKG

4.34 kBJSONView Raw
1{
2 "name": "netlify-cli",
3 "description": "Netlify command line tool",
4 "version": "2.11.15",
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 "test:cli-version": "npm run start -- --version",
23 "test:cli-help": "npm run start -- --help",
24 "watch": "nyc --reporter=lcov ava --watch",
25 "prepack": "oclif-dev manifest",
26 "postpack": "rm -f oclif.manifest.json",
27 "report": "nyc report --reporter=text-lcov | coveralls",
28 "version": "node ./scripts/docs.js && auto-changelog -p --template keepachangelog && git add README.md docs CHANGELOG.md",
29 "prepublishOnly": "git push && git push --tags && gh-release",
30 "update-semver": "npm --depth 9999 update"
31 },
32 "ava": {
33 "files": [
34 "src/**/*.test.js"
35 ],
36 "cache": true,
37 "concurrency": 5,
38 "failFast": false,
39 "failWithoutAssertions": false,
40 "tap": false,
41 "compileEnhancements": false,
42 "babel": false
43 },
44 "bin": {
45 "ntl": "./bin/run",
46 "netlify": "./bin/run"
47 },
48 "bugs": {
49 "url": "https://github.com/netlify/cli/issues"
50 },
51 "dependencies": {
52 "@netlify/cli-utils": "^1.0.2",
53 "@oclif/command": "^1.5.13",
54 "@oclif/config": "^1.12.12",
55 "@oclif/errors": "^1.1.2",
56 "@oclif/plugin-help": "^2.1.6",
57 "@oclif/plugin-not-found": "^1.1.4",
58 "@oclif/plugin-plugins": "^1.7.8",
59 "@octokit/rest": "^16.24.3",
60 "ansi-styles": "^3.2.1",
61 "ascii-table": "0.0.9",
62 "chalk": "^2.4.2",
63 "ci-info": "^2.0.0",
64 "clean-deep": "^3.0.2",
65 "cli-spinners": "^1.3.1",
66 "cli-ux": "^5.2.1",
67 "concordance": "^4.0.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.3.1",
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 "log-symbols": "^2.2.0",
77 "netlify": "^2.4.4",
78 "netlify-dev-plugin": "^1.0.16",
79 "node-fetch": "^2.4.1",
80 "ora": "^3.4.0",
81 "p-wait-for": "^2.0.0",
82 "parse-github-url": "^1.0.2",
83 "prettyjson": "^1.2.1",
84 "random-item": "^1.0.0",
85 "update-notifier": "^2.5.0"
86 },
87 "devDependencies": {
88 "@oclif/dev-cli": "^1.22.0",
89 "auto-changelog": "^1.13.0",
90 "ava": "^1.4.1",
91 "body": "^5.1.0",
92 "coveralls": "^3.0.2",
93 "dependency-check": "^3.3.0",
94 "dependency-cruiser": "^4.16.1",
95 "eslint": "^5.16.0",
96 "eslint-config-prettier": "^4.2.0",
97 "eslint-plugin-import": "^2.17.2",
98 "eslint-plugin-node": "^8.0.1",
99 "eslint-plugin-prettier": "^3.0.1",
100 "from2-string": "^1.1.0",
101 "gh-release": "^3.5.0",
102 "markdown-magic": "^0.1.25",
103 "mkdirp": "^0.5.1",
104 "npm-run-all": "^4.1.3",
105 "nyc": "^14.0.0",
106 "prettier": "^1.17.0"
107 },
108 "engines": {
109 "node": ">=8.0.0"
110 },
111 "files": [
112 "/bin",
113 "/npm-shrinkwrap.json",
114 "/oclif.manifest.json",
115 "/src/**/*.js"
116 ],
117 "homepage": "https://github.com/netlify/cli",
118 "keywords": [
119 "api",
120 "cli",
121 "netlify",
122 "static"
123 ],
124 "license": "MIT",
125 "main": "src/index.js",
126 "oclif": {
127 "bin": "netlify",
128 "commands": "./src/commands",
129 "plugins": [
130 "@oclif/plugin-not-found",
131 "@oclif/plugin-plugins",
132 "@oclif/plugin-help",
133 "netlify-dev-plugin"
134 ],
135 "hooks": {
136 "init": [
137 "./src/hooks/init"
138 ],
139 "analytics": [
140 "./src/hooks/analytics"
141 ]
142 }
143 },
144 "repository": "netlify/cli"
145}