-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "vulu",
"version": "0.0.7",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "Sasan Farrokh <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/SasanFarrokh/vulu.git"
},
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"release": "standard-version -a -s --prerelease beta && git push --follow-tags",
"test": "jest --coverage",
"example": "pnpm --filter vulu-example dev"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"@vue/compiler-dom": "^3.0.4",
"@vue/runtime-core": "^3.0.4",
"@vue/runtime-dom": "^3.0.4",
"@vue/test-utils": "^2.0.0-beta.13",
"@wessberg/rollup-plugin-ts": "^1.3.14",
"codecov": "^3.8.2",
"eslint": "^7.16.0",
"jest": "^26.6.3",
"rollup": "^2.46.0",
"standard-version": "^9.3.0",
"ts-jest": "^26.4.4",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"vue": "^3.2.26"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}