-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "widgetjs",
"description": "A framework for building JavaScript applications with widgets.",
"version": "8.0.2",
"homepage": "http://github.com/foretagsplatsen/widgetjs",
"main": "src/widgetjs.js",
"type": "module",
"author": "Företagsplatsen A.B.",
"contributors": [
"Nicolas Petton <[email protected]>",
"Henrik Wallström <[email protected]>",
"Benjamin Van Ryseghem <[email protected]>",
"Damien Cassou <[email protected]>",
"Johan Briglia <[email protected]>"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/foretagsplatsen/widgetjs/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/foretagsplatsen/widgetjs.git"
},
"keywords": [
"javascript",
"library",
"widget",
"events",
"routing",
"html",
"DSL"
],
"dependencies": {
"classnames": "^2.5.1",
"jquery": "^3.5.0",
"klassified": "^4.0.1"
},
"scripts": {
"lint": "eslint",
"test:run": "vitest",
"test:serve": "vitest --ui"
},
"devDependencies": {
"@foretagsplatsen/eslint-plugin": "^12.0.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"eslint": "^9.13.0",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"globals": "^15.12.0",
"jsdom": "^24.0.0",
"vitest": "^2.0.5",
"yaem": "foretagsplatsen/yaem#1.0.0"
},
"peerDependencies": {
"yaem": "foretagsplatsen/yaem#1.0.0"
}
}