-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.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
38
39
40
41
42
{
"name": "create-v-model",
"version": "2.2.0",
"description": "create v-model bindings quickly and easily - without having to remember which props to use",
"files": [
"dist/",
"types/"
],
"repository": {
"type": "git",
"url": "https://github.com/pearofducks/create-v-model"
},
"type": "module",
"main": "dist/create-v-model.cjs",
"module": "dist/create-v-model.js",
"types": "./types/index.d.ts",
"exports": {
"import": "./dist/create-v-model.js",
"require": "./dist/create-v-model.cjs"
},
"sideEffects": false,
"scripts": {
"types": "tsc",
"build": "rollup -c",
"preversion": "npm run types && npm run build",
"version": "npm publish --access public",
"postversion": "git push --follow-tags",
"test": "node test"
},
"author": "Dave Honneffer <[email protected]>",
"license": "MIT",
"devDependencies": {
"@happy-dom/global-registrator": "^6.0.4",
"@vue/test-utils": "^2.1.0",
"happy-dom": "^6.0.4",
"rollup": "^2.79.1",
"sinon": "^14.0.0",
"typescript": "^4.8.4",
"uvu": "^0.5.6",
"vue": "^3.2.40"
}
}