-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 921 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
37
38
39
40
41
42
43
44
{
"name": "nanlan-tab",
"main": "lib/tab.min.js",
"module": "lib/tab.min.js",
"version": "1.1.1",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rollup -c rollup.config.js",
"release": "standard-version"
},
"files": [
"lib"
],
"keywords": [
"tab",
"jquery-tab"
],
"author": "nanlan",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/MissNanLan/toolkit"
},
"husky": {
"hooks": {
"pre-commit": "echo checking commit msg...",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"husky": "^4.2.5",
"rollup": "^2.26.5",
"rollup-plugin-uglify": "^6.0.4",
"standard-version": "^9.0.0"
},
"dependencies": {
"jquery": "^3.5.1"
},
"directories": {
"example": "examples",
"lib": "lib"
},
"description": "jquery写的tab插件"
}