-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 864 Bytes
/
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
{
"name": "vue-changeset",
"version": "0.3.0",
"description": "",
"source": "src/index.ts",
"main": "dist/vue-changeset.js",
"module": "dist/vue-changeset.module.js",
"unpkg": "dist/vue-changeset.umd.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"test": "jest",
"build": "microbundle build --tsconfig tsconfig.build.json --external vue",
"prepublishOnly": "npm run build",
"test:coverage": "jest --coverage",
"release": "release-it"
},
"author": "Martin Malinda",
"license": "MIT",
"devDependencies": {
"@testing-library/dom": "^7.24.5",
"jest": "^26.5.2",
"microbundle": "^0.12.4",
"release-it": "^14.1.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {},
"peerDependencies": {
"vue": "^3.0.0"
},
"sideEffects": false
}