mirror of
https://github.com/nasa/openmct.git
synced 2024-12-18 20:57:53 +00:00
e7e79f41a7
Create NPM package for OpenMCTWeb. Includes scripts for hosting, running tests, and building documentation.
34 lines
826 B
JSON
34 lines
826 B
JSON
{
|
|
"name": "open-mct-web",
|
|
"version": "0.7.2",
|
|
"description": "The OpenMCTWeb core platform",
|
|
"dependencies": {
|
|
"express": "^4.13.1",
|
|
"minimist": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"jasmine-core": "^2.3.0",
|
|
"jsdoc": "^3.3.2",
|
|
"jshint": "^2.7.0",
|
|
"karma": "^0.12.31",
|
|
"karma-chrome-launcher": "^0.1.8",
|
|
"karma-cli": "0.0.4",
|
|
"karma-jasmine": "^0.1.5",
|
|
"karma-phantomjs-launcher": "^0.1.4",
|
|
"karma-requirejs": "^0.2.2",
|
|
"requirejs": "^2.1.17"
|
|
},
|
|
"scripts": {
|
|
"start": "node app.js",
|
|
"test": "karma start --single-run",
|
|
"jshint": "jshint platform example || exit 0",
|
|
"jsdoc": "jsdoc -c jsdoc.json -r -d docs"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nasa/openmctweb.git"
|
|
},
|
|
"author": "",
|
|
"license": "Apache-2.0"
|
|
}
|