UNPKG

3.97 kBJSONView Raw
1{
2 "name": "netlify-cli",
3 "description": "Netlify command line tool",
4 "version": "2.0.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 "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",
22 "watch": "nyc --reporter=lcov ava --watch",
23 "prepack": "oclif-dev manifest && npm shrinkwrap",
24 "postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
25 "report": "nyc report --reporter=text-lcov | coveralls",
26 "version": "node ./scripts/docs.js && git add README.md docs"
27 },
28 "ava": {
29 "files": [
30 "src/**/*.test.js"
31 ],
32 "cache": true,
33 "concurrency": 5,
34 "failFast": false,
35 "failWithoutAssertions": false,
36 "tap": false,
37 "compileEnhancements": false,
38 "babel": false
39 },
40 "bin": {
41 "ntl": "./bin/run",
42 "netlify": "./bin/run"
43 },
44 "bugs": {
45 "url": "https://github.com/netlify/cli/issues"
46 },
47 "dependencies": {
48 "@iarna/toml": "^2.0.0",
49 "@oclif/command": "^1",
50 "@oclif/config": "^1",
51 "@oclif/errors": "^1.1.2",
52 "@oclif/plugin-help": "^2",
53 "@oclif/plugin-not-found": "^1.1.4",
54 "@octokit/rest": "^15.10.0",
55 "ascii-table": "0.0.9",
56 "chalk": "^2.4.1",
57 "ci-info": "^1.4.0",
58 "clean-deep": "^3.0.2",
59 "cli-spinners": "^1.3.1",
60 "cli-ux": "^4.7.3",
61 "configstore": "^4.0.0",
62 "dot-prop": "^4.2.0",
63 "find-up": "^3.0.0",
64 "git-remote-origin-url": "^2.0.0",
65 "git-repo-info": "^2.0.0",
66 "inquirer": "^6.0.0",
67 "is-docker": "^1.1.0",
68 "lodash.get": "^4.4.2",
69 "lodash.isempty": "^4.4.0",
70 "lodash.mergewith": "^4.6.1",
71 "lodash.snakecase": "^4.1.1",
72 "log-symbols": "^2.2.0",
73 "make-dir": "^1.3.0",
74 "netlify": "2.0.1",
75 "node-fetch": "^2.2.0",
76 "ora": "^3.0.0",
77 "p-wait-for": "^2.0.0",
78 "parse-github-url": "^1.0.2",
79 "prettyjson": "^1.2.1",
80 "random-item": "^1.0.0",
81 "update-notifier": "^2.5.0",
82 "uuid": "^3.3.2",
83 "write-file-atomic": "^2.3.0"
84 },
85 "devDependencies": {
86 "@oclif/dev-cli": "^1.13.31",
87 "ava": "1.0.0-beta.7",
88 "body": "^5.1.0",
89 "coveralls": "^3.0.2",
90 "cpx": "^1.5.0",
91 "dependency-check": "^3.2.0",
92 "dependency-cruiser": "^4.5.0",
93 "eslint": "^5.3.0",
94 "eslint-config-prettier": "^3.0.1",
95 "eslint-plugin-import": "^2.13.0",
96 "eslint-plugin-node": "^7.0.1",
97 "eslint-plugin-prettier": "^2.6.1",
98 "from2-string": "^1.1.0",
99 "markdown-magic": "^0.1.25",
100 "mkdirp": "^0.5.1",
101 "npm-run-all": "^4.1.3",
102 "nyc": "^13.0.0",
103 "prettier": "^1.13.7"
104 },
105 "engines": {
106 "node": ">=8.0.0"
107 },
108 "files": [
109 "/bin",
110 "/npm-shrinkwrap.json",
111 "/oclif.manifest.json",
112 "/src"
113 ],
114 "homepage": "https://github.com/netlify/cli",
115 "keywords": [
116 "api",
117 "cli",
118 "netlify",
119 "static"
120 ],
121 "license": "MIT",
122 "main": "src/index.js",
123 "oclif": {
124 "bin": "netlify",
125 "commands": "./src/commands",
126 "plugins": [
127 "@oclif/plugin-not-found"
128 ],
129 "hooks": {
130 "init": [
131 "./src/hooks/init"
132 ],
133 "analytics": [
134 "./src/hooks/analytics",
135 "./src/hooks/hooks-two"
136 ]
137 }
138 },
139 "repository": "netlify/cli"
140}