-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "vue-multiclick",
"version": "1.1.1",
"description": "A renderless Vue component for managing list item selection state",
"main": "dist/index.min.js",
"module": "dist/index.esm.min.js",
"unpkg": "dist/index.umd.min.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "bili",
"test": "jest",
"test:watch": "jest --watchAll",
"example": "poi --serve",
"example:build": "rm -rf example/dist && poi --prod",
"example:deploy": "npm run example:build && gh-pages -d example/dist",
"version": "npm run example:deploy"
},
"keywords": [
"vue",
"selection",
"state",
"click"
],
"author": "Collin Henderson <collin@syropia.net>",
"license": "MIT",
"repository": "https://github.com/syropian/vue-multiclick",
"bili": {
"input": "src/index.ts",
"output": {
"format": [
"cjs",
"es",
"umd",
"cjs-min",
"es-min",
"umd-min"
],
"moduleName": "VueMulticlick"
}
},
"poi": {
"entry": "example/index.js",
"output": {
"dir": "example/dist",
"publicUrl": "/vue-multiclick/"
}
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@vue/test-utils": "^1.0.0-beta.29",
"bili": "^4.8.1",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"poi": "^12.7.2",
"rollup-plugin-typescript2": "^0.24.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}