forked from editor-js/list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 911 Bytes
/
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
{
"name": "@editorjs/nested-list",
"version": "1.3.0",
"description": "Nested list Tool for EditorJS",
"main": "dist/nested-list.js",
"repository": "https://github.com/editor-js/nested-list.git",
"author": "CodeX <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"lint": "eslint src/ --quiet",
"lint:errors": "eslint src/ --quiet",
"lint:fix": "eslint src/ --fix"
},
"devDependencies": {
"css-loader": "^5.0.2",
"eslint": "^7.22.0",
"eslint-loader": "^4.0.2",
"postcss": "^8.2.6",
"postcss-loader": "^4.2.0",
"postcss-nested": "^5.0.3",
"postcss-nested-ancestors": "^2.0.0",
"style-loader": "^2.0.0",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@codexteam/icons": "^0.0.2"
}
}