-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 KB
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
{
"name": "vue-codearea",
"version": "1.0.0",
"description": "A Vue code component with syntax highlighting",
"main": "dist/component.umd.js",
"module": "dist/component.esm.js",
"unpkg": "dist/component.min.js",
"browser": {
"./sfc": "src/vue/VCodearea.vue"
},
"scripts": {
"dist": "NODE_ENV=production npm run build",
"build": "rollup --config build/rollup.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/joshgaber/vue-codearea.git"
},
"keywords": [
"vue",
"prismjs",
"code",
"syntax"
],
"author": "Josh Gaber",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshgaber/vue-codearea/issues"
},
"homepage": "https://github.com/joshgaber/vue-codearea#readme",
"devDependencies": {
"rollup": "^2.1.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.6",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"prismjs": "^1.19.0",
"vue": "^2.6.11"
}
}