forked from VitorLuizC/vue-uuid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "vue3-uuid",
"version": "1.0.0",
"description": "Add UUID to Vue instance.",
"cdn": "dist/index.umd.min.js",
"main": "dist/index.js",
"unpkg": "dist/index.umd.min.js",
"types": "index.d.ts",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.min.js",
"umd:main": "dist/index.umd.js",
"scripts": {
"test": "ava",
"build": "bili index.js --format es,cjs,umd,umd-min --minimal --moduleName VueUUID",
"prepublishOnly": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wang90/vue3-uuid.git"
},
"keywords": [
"vue3",
"vue3-uuid",
"uuid"
],
"author": "wang90",
"license": "MIT",
"bugs": {
"url": "https://github.com/wang90/vue3-uuid/issues"
},
"homepage": "https://github.com/wang90/vue3-uuid#README",
"ava": {
"require": [
"esm"
]
},
"devDependencies": {
"ava": "^3.8.2",
"bili": "^4.10.1",
"esm": "^3.2.25",
"vue": "^2.6.11"
},
"dependencies": {
"@types/uuid": "^8.0.0",
"uuid": "^8.1.0"
}
}