forked from editor-js/embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "@editorjs/embed",
"version": "2.4.6",
"keywords": [
"codex editor",
"embed",
"tool",
"editor.js",
"editorjs"
],
"description": "Embed Tool for Editor.js",
"license": "MIT",
"repository": "https://github.com/editor-js/embed",
"main": "./dist/bundle.js",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"test": "mocha -r @babel/register -r ignore-styles --recursive ./test",
"lint": "eslint src/ --ext .js",
"lint:errors": "eslint src/ --ext .js --quiet",
"lint:fix": "eslint src/ --ext .js --fix"
},
"author": {
"name": "CodeX",
"email": "[email protected]"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.2",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"css-loader": "^3.5.3",
"debounce": "^1.2.0",
"eslint": "^7.25.0",
"eslint-config-codex": "^1.6.1",
"ignore-styles": "^5.0.1",
"mocha": "^7.1.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-nested-ancestors": "^2.0.0",
"style-loader": "^1.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}