-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "@shoelace-style/vue-sl-model",
"version": "1.0.1",
"description": "A custom Vue directive that makes two-way binding Shoelace components easier.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shoelace-style/vue-sl-model.git"
},
"author": "Cory LaViska",
"license": "MIT",
"bugs": {
"url": "https://github.com/shoelace-style/vue-sl-model/issues"
},
"homepage": "https://github.com/shoelace-style/vue-sl-model#readme",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-babel": "^5.3.0",
"rollup": "^2.21.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0"
},
"peerDependencies": {
"vue": ">= 3.1.0-0"
}
}