mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
### What is this PR for?
Skip PhatomJS installation on `mvn package -DskipTests`
### What type of PR is it?
Improvement
### What is the Jira issue?
[ZEPPELIN-1703](https://issues.apache.org/jira/browse/ZEPPELIN-1703)
### How should this be tested?
`mvn package -DskipTests -pl zeppelin-web` and see no PhantomJS mentions in output.
`mvn package -pl zeppelin-web` and see that PhantomJS is installed\run.
### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
Author: Alexander Bezzubov <bzz@apache.org>
Closes #1673 from bzz/feat/skip-phantomjs-on-mvn-skip-tests and squashes the following commits:
a5355ae [Alexander Bezzubov] ZEPPELIN-1703: skip PhantomJS on -DskipTests
61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"name": "zeppelin-web",
|
|
"license": "Apache-2.0",
|
|
"version": "0.0.0",
|
|
"engines" : { "node" : ">=6.0.0" },
|
|
"scripts": {
|
|
"postinstall": "node_modules/.bin/bower install --silent",
|
|
"build": "./node_modules/.bin/grunt build",
|
|
"start": "./node_modules/.bin/grunt serve",
|
|
"test": "./node_modules/.bin/grunt test",
|
|
"pretest": "./node_modules/.bin/npm install karma-phantomjs-launcher"
|
|
},
|
|
"dependencies": {
|
|
"grunt-angular-templates": "^0.5.7",
|
|
"grunt-dom-munger": "^3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^6.1.0",
|
|
"bower": "^1.8.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.16.0",
|
|
"babel-preset-es2015": "^6.18.0",
|
|
"grunt": "^0.4.1",
|
|
"grunt-babel": "^6.0.0",
|
|
"grunt-cache-bust": "1.3.0",
|
|
"grunt-cli": "^0.1.13",
|
|
"grunt-concurrent": "^0.5.0",
|
|
"grunt-contrib-clean": "^0.5.0",
|
|
"grunt-contrib-concat": "^0.4.0",
|
|
"grunt-contrib-connect": "^0.7.1",
|
|
"grunt-contrib-copy": "^0.5.0",
|
|
"grunt-contrib-cssmin": "^0.9.0",
|
|
"grunt-contrib-htmlmin": "^0.3.0",
|
|
"grunt-contrib-uglify": "^0.4.0",
|
|
"grunt-contrib-watch": "^0.6.1",
|
|
"grunt-eslint": "^18.1.0",
|
|
"grunt-filerev": "^0.2.1",
|
|
"grunt-goog-webfont-dl": "^0.1.2",
|
|
"grunt-htmlhint": "^0.9.13",
|
|
"grunt-jscs": "^2.1.0",
|
|
"grunt-karma": "~2.0.0",
|
|
"grunt-newer": "^0.7.0",
|
|
"grunt-ng-annotate": "^0.10.0",
|
|
"grunt-postcss": "^0.7.1",
|
|
"grunt-svgmin": "^0.4.0",
|
|
"grunt-usemin": "^2.1.1",
|
|
"grunt-wiredep": "~2.0.0",
|
|
"jasmine-core": "^2.5.2",
|
|
"karma": "~1.3.0",
|
|
"karma-coverage": "^1.1.1",
|
|
"karma-jasmine": "~1.0.2",
|
|
"load-grunt-tasks": "^0.4.0",
|
|
"time-grunt": "^0.3.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:apache/zeppelin.git"
|
|
}
|
|
}
|