forked from sueddeutsche/prosemirror-recreate-transform
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@fellow/prosemirror-recreate-transform",
"version": "1.2.3",
"description": "Create a set of steps transforming one prosemirror json document to another",
"type": "module",
"main": "dist/recreateTransform.js",
"module": "dist/recreateTransform.js",
"types": "dist/recreateTransform.d.ts",
"engines": {
"node": ">=10.0.0"
},
"repository": "",
"scripts": {
"build": "rollup --config rollup.config.js",
"lint": "eslint --ext .js,.ts src",
"test": "mocha"
},
"keywords": [
"prosemirror",
"change",
"tracking",
"merging",
"diffing"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"diff": "^5.1.0",
"prosemirror-model": "^1.18.1",
"prosemirror-transform": "^1.7.0",
"rfc6902": "^5.0.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@types/diff": "^5.0.2",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"esbuild": "^0.15.7",
"eslint": "^8.23.1",
"jsdom": "^20.0.0",
"mocha": "^10.0.0",
"prosemirror-test-builder": "^1.1.0",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"source-map-support": "^0.5.16",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser"
},
"mocha": {
"node-option": [
"experimental-specifier-resolution=node",
"loader=ts-node/esm"
],
"extensions": [
"ts",
"tsx"
],
"spec": [
"test/**/*.test.ts"
]
}
}