forked from eclipse-sprotty/sprotty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.83 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "sprotty",
"version": "0.6.0",
"description": "A next-gen framework for graphical views",
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
"keywords": [
"eclipse",
"graphics",
"diagram",
"modeling",
"visualization",
"svg"
],
"homepage": "https://github.com/eclipse/sprotty",
"bugs": "https://github.com/eclipse/sprotty/issues",
"author": {
"name": "Eclipse Sprotty"
},
"contributors": [
{
"name": "Marc Dumais",
"email": "[email protected]",
"url": "https://www.ericsson.com/"
},
{
"name": "Jan Köhnlein",
"email": "[email protected]",
"url": "http://typefox.io"
},
{
"name": "Philip Langer",
"email": "[email protected]",
"url": "https://www.eclipsesource.com"
},
{
"name": "Miro Spönemann",
"email": "[email protected]",
"url": "http://typefox.io"
}
],
"repository": {
"type": "git",
"url": "https://github.com/eclipse/sprotty.git"
},
"dependencies": {
"autocompleter": "5.1.0",
"file-saver": "2.0.2",
"inversify": "5.0.1",
"snabbdom": "0.7.3",
"snabbdom-jsx": "0.4.2",
"snabbdom-virtualize": "0.7.0"
},
"devDependencies": {
"@types/chai": "^4.2.2",
"@types/file-saver": "^2.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.18",
"chai": "^4.2.0",
"circular-dependency-plugin": "^5.2.0",
"core-js": "^3.2.1",
"css-loader": "^3.2.0",
"http-server": "^0.11.1",
"jenkins-mocha": "^8.0.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"semver": "^6.3.0",
"snabbdom-to-html": "^5.1.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.1.0",
"ts-node": "^8.3.0",
"tslint": "^5.20.0",
"typescript": "3.6.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
},
"scripts": {
"clean": "rimraf lib artifacts",
"build": "tsc -p ./tsconfig.json && yarn run lint",
"lint": "tslint -c ./configs/tslint.json --project ./tsconfig.json",
"watch": "tsc -w -p ./tsconfig.json",
"test": "jenkins-mocha --opts ./configs/mocha.opts \"./src/**/*.spec.?(ts|tsx)\"",
"prepare": "yarn run clean && yarn run build",
"examples:build": "webpack --config ./configs/webpack.config.js",
"examples:watch": "webpack --watch --config ./configs/webpack.config.js",
"examples:run": "npx http-server examples",
"prepublishOnly": "yarn run test",
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next",
"publish:latest": "yarn publish --tag latest"
},
"files": [
"lib",
"css",
"src"
],
"main": "lib/index",
"types": "lib/index"
}