mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 19:05:31 +00:00
While not documented as such, it appears that the repository record is required with trusted publishing of npm packages. Test-bot: skip Build-bot: skip
67 lines
1.5 KiB
JSON
67 lines
1.5 KiB
JSON
{
|
|
"name": "@keymanapp/kmc-kmn",
|
|
"description": "Keyman Developer Compiler Module for .kmn to .kmx",
|
|
"keywords": [
|
|
"keyboard",
|
|
"keyman",
|
|
"kmn",
|
|
"kmx",
|
|
"unicode"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./build/src/main.js"
|
|
},
|
|
"files": [
|
|
"/build/src/"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"lint": "eslint .",
|
|
"test": "npm run lint && cd test && tsc -b && cd .. && c8 --reporter=lcov --reporter=text mocha"
|
|
},
|
|
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/common-types": "*",
|
|
"@keymanapp/keyman-version": "*",
|
|
"@keymanapp/developer-utils": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@keymanapp/developer-test-helpers": "*",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^20.4.1",
|
|
"@types/semver": "^7.3.12",
|
|
"@types/sinon": "^10.0.13",
|
|
"@types/sinon-chai": "^3.2.9",
|
|
"c8": "^7.12.0",
|
|
"chalk": "^2.4.2",
|
|
"sinon-chai": "^3.7.0",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"mocha": {
|
|
"spec": "build/test/**/*.tests.js",
|
|
"require": [
|
|
"source-map-support/register"
|
|
]
|
|
},
|
|
"c8": {
|
|
"all": true,
|
|
"src": [
|
|
"src/"
|
|
],
|
|
"exclude-after-remap": true,
|
|
"exclude": [
|
|
"src/import/",
|
|
"test/"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git",
|
|
"directory": "developer/src/kmc-kmn"
|
|
}
|
|
}
|