-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 1.62 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
{
"name": "vue-bytesize-icons",
"version": "0.1.1",
"description": "Bytesize icons as Vue components",
"repository": {
"url": "egoist/vue-bytesize-icons",
"type": "git"
},
"main": "dist/vue-bytesize-icons.js",
"module": "dist/vue-bytesize-icons.es.js",
"jsnext:main": "dist/vue-bytesize-icons.es.js",
"files": [
"dist"
],
"scripts": {
"test": "echo 'no tests!' && npm run lint",
"lint": "xo",
"prepublish": "npm run build",
"build": "node scripts/build && bili --format umd,es,umdCompress --module-name BytesizeIcons --exports named --js babel",
"build:example": "poi build",
"example": "poi"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-helper-vue-jsx-merge-props": "^2.0.2"
},
"devDependencies": {
"babel-plugin-preval": "^1.4.2",
"babel-preset-vue-app": "^1.2.0",
"bili": "^0.17.0",
"bytesize-icons": "^1.2.0",
"eslint-config-rem": "^3.0.0",
"gh-pages": "^1.0.0",
"lodash.kebabcase": "^4.1.1",
"marked3": "^0.4.0",
"mkdirp": "^0.5.1",
"pascal-case": "^2.0.1",
"poi": "^9.1.3",
"prismjs": "^1.6.0",
"rollup-plugin-babel": "^2.7.1",
"typeface-nunito": "^0.0.31",
"v-tippy": "^1.0.0",
"vue-github-badge": "^1.0.1",
"xo": "^0.18.0"
},
"xo": {
"extends": "rem",
"ignores": [
"src/**",
"example/**"
]
},
"babel": {
"presets": [
[
"vue-app",
{
"useBuiltIns": true
}
]
],
"plugins": [
"preval"
]
},
"poi": {
"entry": "example/index.js",
"dist": "example/dist"
}
}