-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "editorjs-inline-image",
"version": "2.2.2",
"keywords": [
"tool",
"image",
"server-less",
"editor.js",
"editorjs"
],
"description": "Unsplash inline images tool for editorjs",
"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",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint src/ test/ --ext .js",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint src/ test/ --ext .js --fix"
},
"author": {
"name": "kommitters Open Source",
"email": "[email protected]"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.10.1",
"@testing-library/jest-dom": "^6.0.0",
"babel-jest": "^29.0.0",
"babel-loader": "^9.0.0",
"css-loader": "^7.0.0",
"eslint": "9.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.3.1",
"nock": "^13.0.0",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"axios": "1.7.7"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/test/config/setupTests.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.(css|svg)$": "<rootDir>/test/config/assetsTransform.js"
}
}
}