* chore: upgrade many dependencies and restructure tsconfigs Summary: - upgrade many dependencies - remove dev dependencies from test-serializer and uhk-common - created root tsconfig.json and test-serializer and uhk-common tsconfigs extends it - fixed e2e test * chore: upgrade more dependencies
37 lines
983 B
JSON
37 lines
983 B
JSON
{
|
|
"name": "uhk-common",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"description": "Common Library contains the common code for uhk-agent (electron-main) and web (electron-renderer) modules",
|
|
"main": "dist/src/index.js",
|
|
"types": "dist/src/index.d.ts",
|
|
"author": "Ultimate Gadget Laboratories",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:UltimateHackingKeyboard/agent.git"
|
|
},
|
|
"scripts": {
|
|
"build": "run-s tsc copy:*",
|
|
"tsc": "tsc",
|
|
"copy:scancodes": "copyfiles ./src/config-serializer/config-items/scancodes.json dist",
|
|
"copy:secondary-roles": "copyfiles ./src/config-serializer/config-items/secondaryRole.json dist",
|
|
"test": "jasmine-ts --config=jasmine.json",
|
|
"coverage": "nyc jasmine-ts --config=jasmine.json"
|
|
},
|
|
"license": "GPL-3.0",
|
|
"nyc": {
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/**/*.spec.ts"
|
|
],
|
|
"reporter": [
|
|
"lcov"
|
|
]
|
|
}
|
|
}
|