* chore: upgrade angular to 5.3.9 and typescript to 2.6.2 * fix electron renderer build * fix webpack config * format webpack.config * fix renderer build
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
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",
|
|
"devDependencies": {
|
|
"@types/jasmine": "2.6.0",
|
|
"@types/node": "8.0.30",
|
|
"jasmine": "2.8.0",
|
|
"jasmine-core": "2.8.0",
|
|
"jasmine-node": "2.0.0",
|
|
"jasmine-ts": "0.2.1",
|
|
"nyc": "11.2.1",
|
|
"ts-node": "3.3.0"
|
|
},
|
|
"nyc": {
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/**/*.spec.ts"
|
|
],
|
|
"reporter": [
|
|
"lcov"
|
|
]
|
|
}
|
|
}
|