forked from udevbe/greenfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.38 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
{
"name": "greenfield-compositor",
"version": "0.0.12",
"description": "A Wayland HTML5 Compositor Library.",
"keywords": [
"linux",
"wayland",
"javascript",
"typescript",
"compositor",
"html5",
"browser",
"canvas",
"webgl",
"websocket",
"remote",
"web"
],
"main": "dist/index.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"prebuild": "rimraf dist types",
"build": "tsc && cpy './src/assets/**' './dist/assets/'",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"demo": "webpack serve --config demo-compositor/webpack.config.js"
},
"dependencies": {
"tinyh264": "0.0.7",
"westfield-runtime-common": "0.5.0",
"westfield-runtime-server": "0.5.0",
"xtsb": "0.0.1-alpha.7"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"cpy-cli": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.0",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"worker-loader": "^3.0.8"
},
"author": "Erik De Rijcke",
"homepage": "https://www.greenfield.app",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/udevbe/greenfield/tree/master/compositor-module"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
}
}