mirror of
https://github.com/cudr/slate-collaborative.git
synced 2024-10-27 20:34:06 +00:00
e3068d0b48
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 25.5.1 to 26.4.4. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](https://github.com/kulshekhar/ts-jest/compare/v25.5.1...v26.4.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "@slate-collaborative/bridge",
|
|
"version": "0.7.0",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"description": "slate-collaborative bridge",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/cudr/slate-collaborative.git"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"author": "cudr",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prepublishOnly": "yarn run build:module",
|
|
"build:module": "yarn run build:types && yarn run build:js",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
|
"watch": "yarn build:js -w",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"automerge": "0.14.0",
|
|
"slate": "0.59.0",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.6.0",
|
|
"@babel/core": "^7.6.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
|
"@babel/preset-env": "^7.6.0",
|
|
"@babel/preset-typescript": "^7.6.0",
|
|
"@types/jest": "^24.9.0",
|
|
"jest": "^24.9.0",
|
|
"ts-jest": "^26.4.4"
|
|
},
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"keywords": [
|
|
"slate",
|
|
"automerge",
|
|
"bridge"
|
|
],
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"globals": {
|
|
"ts-jest": {
|
|
"babelConfig": ".babelrc"
|
|
}
|
|
},
|
|
"roots": [
|
|
"<rootDir>/src"
|
|
],
|
|
"transform": {
|
|
"^.+\\.ts?$": "ts-jest"
|
|
},
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$"
|
|
},
|
|
"gitHead": "1a29cf0da2dc171c1fadd5c8e6eac2327b5b0241"
|
|
}
|