forked from eclipse-sprotty/sprotty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.34 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "sprotty",
"version": "0.9.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": "Tobias Ortmayr",
"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": "^3.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.2",
"@types/file-saver": "^2.0.1",
"@types/jsdom": "^16.2.13",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.2.0",
"circular-dependency-plugin": "^5.2.0",
"core-js": "^3.2.1",
"css-loader": "^3.2.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-no-null": "^1.0.2",
"http-server": "^0.12.3",
"jenkins-mocha": "^8.0.0",
"jsdom": "^15.1.1",
"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-mocha": "^8.0.0",
"ts-node": "^8.3.0",
"typescript": "3.8.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
},
"scripts": {
"clean": "rimraf lib artifacts",
"build": "tsc -p ./tsconfig.json && yarn run lint",
"lint": "eslint -c configs/.eslintrc.js \"src/**/!(*.spec.ts*|test-helper.ts)\"",
"test:cli": "ts-mocha \"./src/**/*.spec.?(ts|tsx)\"",
"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": "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",
"eslintIgnore": [
"configs/.eslintrc.js",
"configs/webpack.config.js",
"src/**/*.spec.?(ts|tsx)",
"src/utils/test-helper.ts",
"examples/**/*"
]
}