-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "editorjs-undo",
"version": "2.0.28",
"keywords": [
"undo",
"redo",
"editor.js",
"editorjs"
],
"description": "Undo tool for Editor.js",
"main": "./dist/bundle.js",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kommitters/editorjs-undo"
},
"author": {
"name": "kommitters Open Source",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kommitters/editorjs-undo/issues"
},
"homepage": "https://github.com/kommitters/editorjs-undo#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.10.2",
"babel-jest": "^29.0.0",
"babel-loader": "^9.0.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.3.1",
"webpack": "^5.52.0",
"webpack-cli": "^5.0.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.(css|svg)$": "<rootDir>/test/config/assetsTransform.js"
}
},
"dependencies": {
"vanilla-caret-js": "^1.0.1"
}
}