forked from egoist/vue-feather-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "vue-feather-icons",
"version": "4.22.0",
"description": "Simply beautiful open source icons as Vue functional components.",
"repository": {
"url": "egoist/vue-feather-icons",
"type": "git"
},
"main": "dist/vue-feather-icons.cjs.js",
"cdn": "dist/vue-feather-icons.min.js",
"unpkg": "dist/vue-feather-icons.min.js",
"module": "dist/vue-feather-icons.es.js",
"files": [
"dist",
"icons"
],
"sideEffects": false,
"scripts": {
"test": "echo 'no tests!'",
"prepublishOnly": "npm run build",
"build": "npm run build:icons && npm run build:dist",
"build:dist": "bili --format umd,es,cjs,umd-min --js buble --name vue-feather-icons",
"build:icons": "node build && babel src/components -d icons",
"example": "poi --serve --config example/poi.config.js",
"build:example": "poi --prod --config example/poi.config.js",
"prebuild:example": "npm run build:icons"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-helper-vue-jsx-merge-props": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"bili": "^3.4.2",
"eslint-config-rem": "^4.0.0",
"feather-icons": "^4.10.0",
"fs-extra": "^8.0.1",
"lodash.kebabcase": "^4.1.1",
"marked": "^0.6.0",
"pascal-case": "^2.0.1",
"poi": "^12.4.4",
"prismjs": "^1.6.0",
"typeface-nunito": "^0.0.72",
"v-tippy": "^1.0.0",
"vue": "^2.5.22",
"vue-github-badge": "^1.0.1",
"vue-template-compiler": "^2.5.22"
},
"babel": {
"presets": [
[
"poi/babel",
{
"jsx": "vue"
}
]
]
}
}