spiegel-keyman/developer/src/common/web/utils/package.json
Marc Durdin 4ed88d8fa6 refactor(developer): move developer-utils files into src/ and sub-folder
In preparation for moving source file types into developer-utils, move
the existing developer-utils files into src/ and src/utils subfolders.
2024-06-12 16:31:50 +07:00

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"
}
}