forked from gluons/vue-highlight.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.08 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "vue-highlight.js",
"version": "3.1.0",
"description": "Highlight.js syntax highlighter component for Vue.",
"main": "./dist/vue-highlight.cjs.js",
"module": "./dist/vue-highlight.es.js",
"unpkg": "./dist/vue-highlight.web.min.js",
"jsdelivr": "./dist/vue-highlight.web.min.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"prepublishOnly": "npm run build",
"predev": "npm run lib",
"dev": "vue-up dev",
"prelib": "rimraf lib/*",
"lib": "tsc -p tsconfig-lib.json",
"build": "npm run lib && vue-up build",
"lint": "tslint -p .",
"format": "prettier --write \"{src/**,src-lib/**,dev/**/*.ts}\"",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/vue-highlight.js.git"
},
"keywords": [
"vue",
"vuejs",
"vue-component",
"highlight.js",
"syntax",
"highlight"
],
"author": "Saran Tanpituckpong <sarunta@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gluons/vue-highlight.js/issues"
},
"homepage": "https://gluons.github.io/vue-highlight.js/",
"peerDependencies": {
"highlight.js": "^9.11.0",
"vue": "2"
},
"devDependencies": {
"@gluons/prettier-config": "^2.0.0",
"@gluons/vue-up": "^0.6.1",
"@types/highlight.js": "^9.12.3",
"@types/jest": "^24.0.18",
"@types/node": "8",
"@vue/test-utils": "^1.0.0-beta.29",
"csstype": "^2.6.6",
"highlight.js": "^9.15.8",
"jest": "^24.9.0",
"npm-run-all": "^4.1.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"tsconfig-gluons": "^1.0.1",
"tslint": "^5.19.0",
"tslint-config-gluons": "^2.1.0",
"typescript": "^3.6.2",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.2.2",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"detect-indent": "^6.0.0",
"redent": "^3.0.0",
"tslib": "^1.10.0"
},
"jest": {
"preset": "ts-jest",
"globals": {
"IS_WEB_BUNDLE": false
}
}
}