Skip to content
This repository was archived by the owner on Sep 12, 2019. It is now read-only.

Commit f4eae86

Browse files
committed
Fix scripts
1 parent 332b563 commit f4eae86

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "netlify-dev-plugin",
33
"description": "Netlify development tools plugin",
4-
"version": "0.2.0",
4+
"version": "1.0.0-beta",
55
"author": "David Calavera @calavera",
66
"bugs": "https://github.com/netlify/netlify-dev-plugin/issues",
77
"dependencies": {
@@ -12,6 +12,8 @@
1212
"@oclif/config": "^1",
1313
"ascii-table": "0.0.9",
1414
"boxen": "^3.0.0",
15+
"chalk": "^2.4.2",
16+
"chokidar": "^2.1.5",
1517
"copy-template-dir": "^1.4.0",
1618
"execa": "^1.0.0",
1719
"fs-extra": "^7.0.1",
@@ -23,7 +25,6 @@
2325
"inquirer-autocomplete-prompt": "^1.0.1",
2426
"netlify": "2.4.1",
2527
"node-fetch": "^2.3.0",
26-
"opn": "^5.5.0",
2728
"ora": "^3.4.0",
2829
"safe-join": "^0.1.2",
2930
"static-server": "^2.2.1",
@@ -71,15 +72,15 @@
7172
},
7273
"repository": "netlify/netlify-dev-plugin",
7374
"scripts": {
75+
"format": "npm run format:prettier -- --write",
76+
"format:prettier": "prettier \"{{src,test}/**/,}*.js\"",
7477
"postpack": "rm -f oclif.manifest.json",
7578
"posttest": "eslint .",
7679
"prepack": "oclif-dev manifest && oclif-dev readme",
80+
"prepublishOnly": "git push && git push --tags && gh-release",
7781
"test": "run-s test:*",
78-
"test:mocha": "nyc mocha --forbid-only \"test/**/*.test.js\"",
7982
"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",
80-
"format": "npm run format:prettier -- --write",
81-
"format:prettier": "prettier \"{{src,test}/**/,}*.js\"",
82-
"version": "oclif-dev readme && auto-changelog -p --template keepachangelog && git add README.md CHANGELOG.md",
83-
"prepublishOnly": "git push && git push --tags && gh-release"
83+
"test-skip:mocha": "nyc mocha --forbid-only \"test/**/*.test.js\"",
84+
"version": "oclif-dev readme && auto-changelog -p --template keepachangelog && git add README.md CHANGELOG.md"
8485
}
8586
}

0 commit comments

Comments
 (0)