mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 09:55:32 +00:00
In preparation for moving source file types into developer-utils, move the existing developer-utils files into src/ and src/utils subfolders.
38 lines
803 B
JSON
38 lines
803 B
JSON
{
|
|
"name": "@keymanapp/developer-utils",
|
|
"description": "Keyman Developer utilities",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./build/src/index.js"
|
|
},
|
|
"files": [
|
|
"/build/"
|
|
],
|
|
"dependencies": {
|
|
"@sentry/node": "^7.57.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.4.1",
|
|
"typescript": "^5.4.5",
|
|
"c8": "^7.12.0",
|
|
"mocha": "^8.4.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -b"
|
|
},
|
|
"mocha": {
|
|
"spec": "build/test/**/test-*.js",
|
|
"require": [
|
|
"source-map-support/register"
|
|
]
|
|
},
|
|
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
}
|
|
}
|