-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 949 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
33
34
35
36
37
38
39
40
41
{
"name": "@josephuspaye/noodle",
"version": "0.1.2",
"description": "Markdown to spaghettified HTML.",
"main": "dist/noodle.js",
"author": "Josephus Paye II",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JosephusPaye/noodle.git"
},
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c --compact -m"
},
"dependencies": {
"debounce": "^1.2.0",
"highlight.js": "^10.1.2",
"markdown-it": "^10.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"rollup": "^2.7.6",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.5"
},
"files": [
"dist",
"styles",
"compiler.js",
"css.js",
"index.js",
"Noodle.vue",
"NoodlePreview.vue",
"README.md",
"yarn.lock"
]
}