-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "@pubpub/prosemirror-reactive",
"version": "0.2.0",
"description": "Use reactive, stateful nodes in Prosemirror",
"main": "dist/index.js",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@types/prosemirror-model": "^1.13.2",
"@types/prosemirror-state": "^1.2.7",
"@types/prosemirror-view": "^1.19.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"esm": "^3.2.25",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.5.3"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint 'src/**/*.ts'",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pubpub/prosemirror-reactive.git"
},
"author": "Ian Reynolds",
"license": "MIT",
"bugs": {
"url": "https://github.com/pubpub/prosemirror-reactive/issues"
},
"homepage": "https://github.com/pubpub/prosemirror-reactive#readme",
"dependencies": {
"prosemirror-model": "^1.9.1",
"prosemirror-state": "^1.3.3",
"prosemirror-view": "^1.14.7"
}
}