58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "che-workspace-loader",
|
|
"version": "1.0.0",
|
|
"description": "Eclipse Che Workspace Loader App",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"compile": "webpack --config webpack.prod.js",
|
|
"start": "webpack-dev-server --open --config webpack.dev.js",
|
|
"format": "tsfmt -r --useTsfmt tsfmt.json",
|
|
"lint:fix": "tslint -c tslint.json --fix --project .",
|
|
"build": "yarn run format && yarn run compile"
|
|
},
|
|
"author": "",
|
|
"license": "EPL-1.0",
|
|
"devDependencies": {
|
|
"@types/jest": "^22.1.3",
|
|
"clean-webpack-plugin": "^0.1.18",
|
|
"css-loader": "^0.28.9",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"jest": "^22.4.2",
|
|
"mini-css-extract-plugin": "^0.5.0",
|
|
"style-loader": "^0.20.1",
|
|
"ts-loader": "^5.3.3",
|
|
"tslint": "5.9.1",
|
|
"tslint-loader": "^3.5.4",
|
|
"typescript": "^2.7.1",
|
|
"typescript-formatter": "7.2.2",
|
|
"uglifyjs-webpack-plugin": "^1.1.8",
|
|
"webpack": "^4.0.0",
|
|
"webpack-cli": "^3.2.1",
|
|
"webpack-dev-server": "^3.1.11",
|
|
"webpack-merge": "^4.1.1"
|
|
},
|
|
"dependencies": {
|
|
"@eclipse-che/api": "^7.0.0-beta-4.0-80162ea6d2",
|
|
"lodash": "4.17.11",
|
|
"reconnecting-websocket": "3.2.2"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"js"
|
|
],
|
|
"transform": {
|
|
"^.+\\.(ts)$": "<rootDir>/test/preprocessor.js"
|
|
},
|
|
"moduleNameMapper": {
|
|
"\\.(css|less)$": "<rootDir>/test/mock.js"
|
|
},
|
|
"testMatch": [
|
|
"**/test/*.(ts)"
|
|
],
|
|
"testURL": "http://localhost"
|
|
}
|
|
}
|