-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "editorjs-to-html",
"version": "1.0.4",
"description": "parse editorjs content format to html with saving editorjs markup format",
"main": "./build/Parser.esm.js",
"types": "./build/index.d.ts",
"directories": {
"test": "test",
"rollup": ""
},
"scripts": {
"build": "rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vorjyga/editorjs-to-html.git"
},
"keywords": [
"editorjs",
"parser",
"html"
],
"author": "Pavel Novaikin",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.2.0",
"@rollup/plugin-typescript": "^10.0.1",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.0",
"postcss": "^8.4.21",
"postcss-custom-media": "^9.1.2",
"postcss-import": "^15.1.0",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-nesting": "^11.2.2",
"postcss-simple-vars": "^7.0.1",
"rollup": "^3.20.2",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}