2019-10-05 08:44:49 +00:00
|
|
|
{
|
|
|
|
"name": "@slate-collaborative/bridge",
|
2021-01-18 16:57:58 +00:00
|
|
|
"version": "0.7.2",
|
2019-10-05 08:44:49 +00:00
|
|
|
"files": [
|
|
|
|
"lib"
|
|
|
|
],
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"description": "slate-collaborative bridge",
|
2019-10-05 09:07:11 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/cudr/slate-collaborative.git"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2019-10-05 08:44:49 +00:00
|
|
|
"author": "cudr",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2020-05-11 06:21:49 +00:00
|
|
|
"prepublishOnly": "yarn run build:module",
|
|
|
|
"build:module": "yarn run build:types && yarn run build:js",
|
2019-10-05 08:44:49 +00:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
2019-10-21 21:05:46 +00:00
|
|
|
"watch": "yarn build:js -w",
|
|
|
|
"test": "jest"
|
2019-10-05 08:44:49 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-05-11 06:21:49 +00:00
|
|
|
"automerge": "0.14.0",
|
2021-01-15 13:02:50 +00:00
|
|
|
"slate": "0.59.0",
|
2020-05-10 13:50:12 +00:00
|
|
|
"typescript": "^3.8.3"
|
2019-10-05 08:44:49 +00:00
|
|
|
},
|
|
|
|
"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",
|
2020-05-10 13:50:12 +00:00
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
2019-10-05 08:44:49 +00:00
|
|
|
"@babel/preset-env": "^7.6.0",
|
2019-10-21 21:05:46 +00:00
|
|
|
"@babel/preset-typescript": "^7.6.0",
|
2020-05-10 13:50:12 +00:00
|
|
|
"@types/jest": "^24.9.0",
|
2019-10-21 21:05:46 +00:00
|
|
|
"jest": "^24.9.0",
|
2021-01-15 13:04:52 +00:00
|
|
|
"ts-jest": "^26.4.4"
|
2019-10-05 09:07:11 +00:00
|
|
|
},
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"slate",
|
|
|
|
"automerge",
|
|
|
|
"bridge"
|
2019-10-21 21:05:46 +00:00
|
|
|
],
|
|
|
|
"jest": {
|
2020-05-10 13:50:12 +00:00
|
|
|
"preset": "ts-jest",
|
|
|
|
"globals": {
|
|
|
|
"ts-jest": {
|
|
|
|
"babelConfig": ".babelrc"
|
|
|
|
}
|
|
|
|
},
|
2019-10-21 21:05:46 +00:00
|
|
|
"roots": [
|
|
|
|
"<rootDir>/src"
|
|
|
|
],
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.ts?$": "ts-jest"
|
|
|
|
},
|
|
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$"
|
2020-05-11 06:21:49 +00:00
|
|
|
},
|
|
|
|
"gitHead": "1a29cf0da2dc171c1fadd5c8e6eac2327b5b0241"
|
2019-10-05 08:44:49 +00:00
|
|
|
}
|