This repository has been archived by the owner on Sep 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
111 lines (111 loc) · 3.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "netlify-dev-plugin",
"description": "Netlify development tools plugin",
"version": "1.0.28",
"author": "David Calavera @calavera",
"bugs": "https://github.com/netlify/netlify-dev-plugin/issues",
"dependencies": {
"@netlify/cli-utils": "^1.0.7",
"@netlify/rules-proxy": "^0.1.3",
"@netlify/zip-it-and-ship-it": "^0.3.0",
"@oclif/command": "^1",
"@oclif/config": "^1",
"ascii-table": "0.0.9",
"body-parser": "^1.18.3",
"boxen": "^3.0.0",
"chalk": "^2.4.2",
"chokidar": "^2.1.5",
"copy-template-dir": "^1.4.0",
"debug": "^4.1.1",
"execa": "^1.0.0",
"express": "^4.16.4",
"express-logging": "^1.1.1",
"fs-extra": "^7.0.1",
"fuzzy": "^0.1.3",
"get-port": "^4.2.0",
"gh-release-fetch": "^1.0.3",
"http-proxy": "^1.17.0",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"jwt-decode": "^2.2.0",
"netlify": "2.4.1",
"netlify-cli-logo": "^1.0.0",
"node-fetch": "^2.3.0",
"npm-packlist": "^1.4.1",
"ora": "^3.4.0",
"precinct": "^6.1.2",
"read-pkg-up": "^5.0.0",
"require-package-name": "^2.0.1",
"resolve": "^1.10.0",
"safe-join": "^0.1.2",
"static-server": "^2.2.1",
"wait-port": "^0.2.2",
"wrap-ansi": "^5.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"auto-changelog": "^1.12.0",
"chai": "^4",
"dependency-check": "^3.3.0",
"eslint": "^5.5",
"eslint-config-oclif": "^3.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"gh-release": "^3.5.0",
"globby": "^8",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"mocha": "^5",
"nock": "^10.0.6",
"npm-run-all": "^4.1.5",
"nyc": "^13",
"prettier": "^1.16.4"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/yarn.lock"
],
"homepage": "https://github.com/netlify/netlify-dev-plugin",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./src/commands",
"bin": "netlify",
"devPlugins": [
"@oclif/plugin-help"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"npm run format",
"git add"
]
},
"repository": "netlify/netlify-dev-plugin",
"scripts": {
"format": "npm run format:prettier -- --write",
"format:prettier": "prettier \"{{src,test}/**/,}*.js\"",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"prepublishOnly": "git push && git push --tags && gh-release",
"test": "run-s test:*",
"test:deps": "dependency-check ./package.json --entry \"src/commands/**/!(*.test).js\" --unused --missing --no-dev --no-peer -i @oclif/plugin-not-found -i @oclif/config -i @oclif/plugin-help -i @oclif/plugin-plugins",
"test-skip:mocha": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && auto-changelog -p --template keepachangelog && git add README.md CHANGELOG.md"
}
}