-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@kieler/klighd-interactive",
"version": "0.6.0",
"description": "A module for klighd-core to interactively apply constraints to the diagram",
"author": "KIELER <kieler@rtsys.informatik.uni-kiel.de>",
"license": "EPL-2.0",
"keywords": [
"klighd",
"interactive"
],
"repository": {
"type": "git",
"url": "https://github.com/kieler/klighd-vscode",
"directory": "packages/klighd-core"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"build": "tsc",
"watch": "tsc -w",
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version"
},
"dependencies": {
"inversify": "^6.0.2",
"snabbdom": "^3.5.1",
"sprotty": "^1.3.0",
"sprotty-protocol": "^1.3.0"
},
"devDependencies": {
"rimraf": "^4.4.0",
"semver": "^7.5.4"
},
"files": [
"lib",
"src",
"build"
]
}