-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "vue-prism-component",
"version": "1.1.1",
"description": "vue component for prism.js",
"repository": {
"url": "egoist/vue-prism-component",
"type": "git"
},
"homepage": "https://egoistian.com/vue-prism-component/",
"main": "dist/vue-prism-component.common.js",
"cdn": "dist/vue-prism-component.min.js",
"unpkg": "dist/vue-prism-component.min.js",
"files": [
"dist"
],
"scripts": {
"test": "echo skip",
"lint": "xo",
"prepublishOnly": "npm run build",
"build": "npm run build:umd && npm run build:cjs",
"build:umd": "bili --file-name \"vue-prism-component[min].js\" --format umd --format umd-min --env.NODE_ENV production --module-name PrismComponent --external prismjs --external vue",
"build:cjs": "bili --file-name \"vue-prism-component.common.js\" --format cjs"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"bili": "^4.9.0",
"eslint-config-rem": "^3.0.0",
"prismjs": "^1.6.0",
"vue": "^3.0.4",
"xo": "^0.18.0"
},
"xo": {
"extends": "rem/prettier",
"ignores": [
"example/**"
],
"rules": {
"import/prefer-default-export": 0
}
}
}