forked from kommitters/editorjs-inline-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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-inline-image",
"version": "0.1.4",
"keywords": [
"tool",
"image",
"server-less",
"editor.js",
"editorjs"
],
"description": "InlineImage Tool for Editor.js",
"license": "MIT",
"repository": "https://github.com/kommitters/editorjs-inline-image",
"main": "./dist/bundle.js",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"test": "jest"
},
"author": {
"name": "kommit",
"email": "[email protected]"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.10.1",
"@testing-library/jest-dom": "^5.9.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^1.0.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1",
"nock": "^12.0.3",
"style-loader": "^0.21.0",
"svg-inline-loader": "^0.8.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"axios": "^0.21.1"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/test/config/setupTests.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.(css|svg)$": "<rootDir>/test/config/assetsTransform.js"
}
}
}