-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vuelve",
"description": "A declarative syntax for the Composition API in Vue 3.",
"version": "2.0.0",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/vuelve.cjs.js",
"module": "dist/vuelve.esm.js",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "lint-staged",
"lint-all": "pretty-quick --pattern \"src/**/*.{js,ts}\" --pattern \"test/**/*.{js,ts}\" && eslint --fix \"src/**/*.{js,ts}\"",
"test": "jest --coverage",
"test-watch": "jest --watch --coverage"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dashersw/vuelve.git"
},
"author": "Armagan Amcalar <[email protected]>",
"bugs": {
"url": "https://github.com/dashersw/vuelve/issues"
},
"homepage": "https://github.com/dashersw/vuelve#readme",
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@types/jest": "^29.5.12",
"@types/lodash.clonedeep": "^4.5.9",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/test-utils": "^2.4.5",
"babel-jest": "^29.7.0",
"coveralls": "^3.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^4.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vue": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pretty-quick --staged",
"eslint --fix"
]
}
}