spiegel-keyman/common/models/wordbreakers/package.json
Marc Durdin 0fbf53f8d7 chore(web): move version from package.json to keyman-version package
Starts to resolve the chaos of putting version numbers into every
package.json file.

Adds a new keyman-version package which mimics the
version information in build-utils.sh. This will eventually replace
resources/web-environment.

Fixes the build for the lexical model compiler tools to remove refs to
package.json version and use keyman-version instead.

More fixes coming in a follow-up.
2022-04-17 06:47:39 +10:00

53 lines
1.1 KiB
JSON

{
"name": "@keymanapp/models-wordbreakers",
"description": "Word breakers bundled in the modeling layer",
"keywords": [
"lexical model",
"models",
"word",
"breaker",
"breaking",
"lmlayer"
],
"contributors": [
"Eddie Antonio Santos <easantos@ualberta.ca>"
],
"homepage": "https://github.com/keymanapp/keyman",
"license": "MIT",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keymanapp/keyman.git"
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha"
},
"bugs": {
"url": "https://github.com/keymanapp/keyman/issues"
},
"devDependencies": {
"@keymanapp/models-types": "*",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"ts-node": "^9.1.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/node": "^14.0.3"
}
}