-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.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
{
"name": "vm-providers",
"version": "0.1.2",
"description": "Functions to create, control (by sending keyboard and mouse events) and destroy a virtual machine from different providers (virtualbox and qemu).",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"author": "David-Emmanuel Divernois <[email protected]>",
"homepage": "https://github.com/AmadeusITGroup/Assistive-Webdriver/tree/master/components/vm-providers",
"bugs": "https://github.com/AmadeusITGroup/Assistive-Webdriver/issues",
"repository": {
"type": "git",
"url": "https://github.com/AmadeusITGroup/Assistive-Webdriver.git",
"directory": "components/vm-providers"
},
"keywords": [
"virtualbox",
"qemu"
],
"files": [
"dist",
"config-schema.json"
],
"license": "MIT",
"dependencies": {
"@zxing/library": "0.19.1",
"pngjs": "6.0.0",
"qrcode": "1.5.1",
"stream-json": "1.7.5",
"uuid": "9.0.0",
"virtualbox-soap": "5.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "7.33.6",
"@rollup/plugin-typescript": "10.0.1",
"@types/jest": "29.2.3",
"@types/pngjs": "6.0.1",
"@types/qrcode": "1.5.0",
"@types/stream-json": "1.7.2",
"@types/uuid": "9.0.0",
"jest": "29.3.1",
"json-schema-to-typescript": "11.0.2",
"rollup": "3.5.0",
"tslib": "2.4.1",
"typescript": "4.9.3"
},
"scripts": {
"prepare": "pnpm build",
"build": "node ../../tools/clean && pnpm build:schema && pnpm build:rollup && pnpm build:dts && pnpm build:api",
"build:schema": "json2ts -i config-schema.json -o src/config.ts",
"build:rollup": "rollup --failAfterWarnings -c",
"build:dts": "tsc -p tsconfig.d.json",
"build:api": "api-extractor run --config ./api-extractor.json --verbose",
"test": "nyc --cwd ../.. jest"
}
}