-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
94 lines (94 loc) · 1.91 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "vue2-transitions",
"version": "0.3.0",
"description": "Reusable component transitions",
"repository": {
"url": "cristij/vue2-transitions",
"type": "git"
},
"main": "dist/vue2-transitions.cjs.js",
"module": "dist/vue2-transitions.m.js",
"unpkg": "dist/vue-transitions",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"types"
],
"scripts": {
"prepublishOnly": "npm test && npm run build",
"test": "test-vue-app",
"test:types": "tsc -p ./types/test/tsconfig.json",
"build": "bili && cp types/index.d.ts dist",
"example": "poi",
"dev": "poi",
"build:example": "poi build"
},
"author": {
"name": "cristij",
"email": "joracristi@gmail.com"
},
"license": "MIT",
"poi": {
"entry": "example/index.js",
"dist": "example/dist",
"homepage": "./",
"html": {
"template": "example/index.html"
}
},
"babel": {
"presets": [
[
"vue-app"
]
],
"plugins": [
"preval",
[
"component",
[
{
"libraryName": "element-ui",
"styleLibraryName": "theme-chalk"
}
]
]
]
},
"bili": {
"format": [
"cjs",
"es",
"umd",
"umd-min"
],
"banner": true,
"name": "vue2-transitions",
"plugins": [
"vue"
],
"vue": {
"css": true
}
},
"devDependencies": {
"babel-plugin-component": "^1.0.0",
"babel-plugin-preval": "^1.6.2",
"bili": "^1.3.3",
"element-ui": "^2.0.10",
"lodash.kebabcase": "^4.1.1",
"marked3": "^0.5.1",
"poi": "^9.3.10",
"prismjs": "^1.9.0",
"rollup-plugin-vue": "^2.5.2",
"sass-loader": "^6.0.6",
"test-vue-app": "^1.0.0",
"typeface-lato": "^0.0.44",
"typescript": "^2.9.2",
"v-tippy": "^1.0.2",
"vue": "^2.5.13",
"vue-github-badge": "^1.0.1",
"vue-test-utils": "^1.0.0-beta.2"
}
}