openlp/package.json
Raoul Snyman 5b7e628403 Run the Display JS tests as well
- Add an entry in .gitlab-ci.yml
- Create a custom browser that'll run in Docker with Chromium Headless
- Add JS linting
- Fix up issues highlighted by linter
2019-10-23 20:09:37 +00:00

27 lines
690 B
JSON

{
"name": "openlp",
"version": "2.5.1",
"description": "OpenLP is free church worship presentation software",
"repository": "lp:openlp",
"directories": {
"test": "tests"
},
"dependencies": {
"jasmine-core": "^2.6.4",
"jshint": "^2.10.2",
"karma": "^3.1.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-log-reporter": "0.0.4"
},
"scripts": {
"test": "karma start --single-run",
"lint": "jshint openlp/core/display/html/display.js"
},
"author": "OpenLP Developers",
"license": "GPL-3.0-or-later"
}