mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-15 21:29:23 +00:00
- generate coverage/lcov.info files in several places that were already using c8 - change kmc-package's 'npm test' to include coverage, leave 'coverage' as alias - gitignore the lcov files Fixes #8060
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"name": "@keymanapp/kmc-keyboard",
|
|
"description": "Keyman Developer keyboard compiler",
|
|
"keywords": [
|
|
"keyboard",
|
|
"keyman",
|
|
"ldml",
|
|
"unicode"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./build/src/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"test": "cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/keyman-version": "*",
|
|
"ajv": "^8.11.0",
|
|
"restructure": "git+https://github.com/keymanapp/dependency-restructure.git#49d129cf0916d082a7278bb09296fb89cecfcc50",
|
|
"semver": "^7.3.7",
|
|
"xml2js": "git+https://github.com/keymanapp/dependency-node-xml2js#535fe732dc408d697e0f847c944cc45f0baf0829"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.1.7",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^10.14.6",
|
|
"@types/semver": "^7.3.12",
|
|
"@types/xml2js": "^0.4.5",
|
|
"c8": "^7.12.0",
|
|
"chai": "^4.3.4",
|
|
"chalk": "^2.4.2",
|
|
"mocha": "^8.4.0",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "4.6.3"
|
|
},
|
|
"mocha": {
|
|
"spec": "build/test/**/test-*.js",
|
|
"require": [
|
|
"source-map-support/register"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
}
|
|
}
|