forked from knee-cola/es6-menu-aim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "@mysigmail/menu-aim",
"type": "module",
"version": "1.0.5",
"description": "ES6 re-implementation of jQuery-menu-aim",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mysigmail/es6-menu-aim"
},
"keywords": [
"menu-aim"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"build": "vite build",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "simple-git-hooks"
},
"authors": [
{
"name": "knee-cola",
"email": "[email protected]>"
},
{
"name": "Anton Reshetov",
"email": "[email protected]"
}
],
"devDependencies": {
"@antfu/eslint-config": "^1.1.0",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"bumpp": "^9.2.0",
"eslint": "^8.53.0",
"lint-staged": "^15.0.2",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}