@eclipse-emfcloud/model-validation
Version:
Generic model validation framework.
75 lines (74 loc) • 2.05 kB
JSON
{
"name": "@eclipse-emfcloud/model-validation",
"version": "1.0.3",
"description": "Generic model validation framework.",
"keywords": [
"theia-extension",
"eclipse",
"emfcloud",
"model-management",
"validation"
],
"license": "(EPL-2.0 OR MIT)",
"contributors": [
{
"name": "Eclipse EMF Cloud Project",
"email": "emfcloud-dev@eclipse.org",
"url": "https://projects.eclipse.org/projects/ecd.emfcloud"
}
],
"homepage": "https://www.eclipse.org/emfcloud/",
"bugs": "https://github.com/eclipse-emfcloud/modelhub/issues",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-emfcloud/modelhub.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"yarn": ">=1.7.0 <2.x.x",
"node": ">=20.14.0"
},
"main": "lib/index",
"types": "lib/index",
"files": [
"lib",
"src",
"LICENSE"
],
"dependencies": {
"@eclipse-emfcloud/model-logger": "1.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.2.22",
"@types/chai-like": "^1.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^20.14.0",
"@types/sinon": "^10.0.13",
"chai": "^4.3.4",
"chai-like": "^1.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^6.0.1",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "~5.6.3"
},
"scripts": {
"prepare": "yarn clean && yarn build",
"clean": "rimraf lib",
"clean:coverage": "rimraf .nyc_output coverage",
"lint": "eslint --max-warnings 0 -c ../../.eslintrc.json --ext .ts,.tsx ./src",
"lint:fix": "eslint -c ../../.eslintrc.json --fix --ext .ts,.tsx ./src",
"build": "tsc",
"test": "yarn run test:ci",
"test:ci": "mocha --config .mocharc.json \"./src/**/*.spec.?(ts|tsx)\"",
"test:coverage": "yarn clean:coverage && nyc yarn test",
"watch": "tsc -w"
},
"gitHead": "857b65424249a2051f9a1b2b32d6ba5b94ad886d"
}