-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
96 lines (96 loc) · 2.24 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "prosemirror-utils",
"version": "1.2.2",
"description": "Utils library for ProseMirror",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": {
"name": "Eduard Shvedai",
"email": "[email protected]",
"url": "https://github.com/eshvedai"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"maintainers": [
{
"name": "Eduard Shvedai",
"email": "[email protected]"
},
{
"name": "Rodrigo Vieira",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/atlassian/prosemirror-utils.git"
},
"keywords": [
"ProseMirror",
"utils",
"helpers"
],
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"./jestFrameworkSetup.ts"
],
"testEnvironment": "jsdom"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint ./src/ --ext .ts --fix",
"build": "./build.js && tsc --project tsconfig.dist.json",
"test": "jest",
"test-ci": "NODE_ENV=testing jest --coverage && codecov",
"prepare": "npm run build"
},
"peerDependencies": {
"prosemirror-model": "^1.19.2",
"prosemirror-state": "^1.4.3"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"codecov": "^3.1.0",
"esbuild": "^0.18.12",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^1.3.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"prosemirror-model": "1.19.2",
"prosemirror-schema-basic": "^1.2.2",
"prosemirror-state": "^1.4.3",
"prosemirror-test-builder": "^1.1.1",
"prosemirror-transform": "^1.7.3",
"prosemirror-view": "^1.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{js, md}$": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailing-comma": "es5"
}
}