-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 879 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
{
"name": "@miclgael/use-helpers",
"description": "Set of helper functions designed for use with Vue/React",
"version": "0.0.19",
"author": "Michael Gale <[email protected]> (https://www.michaelgale.dev)",
"keywords": [
"use-helpers",
"helpers",
"vue-use",
"helper functions"
],
"repository": {
"url": "[email protected]/miclgael/use-helpers.git",
"type": "git"
},
"scripts": {
"test": "vitest --reporter verbose",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"preversion": "npm run test:run",
"version": "git add .",
"postversion": "git push && git push --tags && npm publish"
},
"test": "src/useHelpers.ts",
"main": "index.ts",
"devDependencies": {
"@types/node": "^17.0.21",
"c8": "^7.11.0",
"vitest": "^0.5.5"
},
"license": "MIT",
"typings": "types.d.ts"
}