UNPKG

theia-sprotty

Version:

Glue code for sprotty diagrams in a Theia IDE

50 lines (49 loc) 1.13 kB
{ "name": "theia-sprotty", "version": "0.1.20", "description": "Glue code for sprotty diagrams in a Theia IDE", "author": "Project Theia", "license": "Apache-2.0", "keywords": [ "theia", "sprotty", "diagram", "theia-extension" ], "dependencies": { "@theia/core": "latest", "@theia/editor": "latest", "@theia/filesystem": "latest", "@theia/languages": "latest", "@theia/monaco": "latest", "sprotty": "^0.4.2" }, "scripts": { "prepare": "yarn run clean && yarn run build", "clean": "rimraf lib", "build": "tsc && yarn lint", "lint": "tslint -c ./tslint.json --project ./tsconfig.json", "watch": "tsc -w", "test": "mocha --opts ./mocha.opts \"./src/**/*.spec.?(ts|tsx)\"" }, "devDependencies": { "@types/chai": "^4.1.3", "@types/mocha": "^5.2.0", "chai": "^4.1.2", "mocha": "^5.1.1", "rimraf": "^2.6.1", "ts-node": "<7.0.0", "tslint": "^5.5.0", "typescript": "2.9.1" }, "files": [ "lib", "src", "css" ], "theiaExtensions": [ { "frontend": "lib/theia/diagram-module" } ] }