[NWD] Remove scripts from package.json. AppSheet depends on this package via a direct Git dependency. The presence of scripts in package.json causes npm to attempt to rebuild react-draggable each time we run "npm ci", which is unnecessary given that we already have a built react-draggable checked into the Git repository. Change-Id: Iaa8453275e4f8b682636f7e84b29ba64c22e58e5
diff --git a/package.json b/package.json index 86f69d2..4938588 100644 --- a/package.json +++ b/package.json
@@ -4,17 +4,6 @@ "description": "React draggable component", "main": "build/cjs/cjs.js", "unpkg": "build/web/react-draggable.min.js", - "scripts": { - "test": "make test", - "test-phantom": "make test-phantom", - "test-debug": "karma start --browsers=Chrome --single-run=false --auto-watch=true", - "test-firefox": "karma start --browsers=Firefox --single-run=false --auto-watch=true", - "test-ie": "karma start --browsers=IE --single-run=false --auto-watch=true", - "dev": "make dev", - "build": "make clean build", - "lint": "make lint", - "flow": "flow" - }, "files": [ "/build", "/typings", @@ -96,4 +85,4 @@ "react": ">= 16.3.0", "react-dom": ">= 16.3.0" } -} \ No newline at end of file +}