-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
60 lines (60 loc) · 1.26 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
{
"name": "jquery-slinky",
"description": "Rather sweet menus",
"version": "4.2.1",
"license": "MIT",
"main": "dist/slinky.min.js",
"homepage": "https://slinky.js.org",
"private": false,
"author": {
"name": "Ali Zahid",
"email": "[email protected]",
"url": "https://designplox.com"
},
"repository": {
"type": "git",
"url": "https://github.com/alizahid/slinky.git"
},
"bugs": {
"url": "https://github.com/alizahid/slinky/issues"
},
"keywords": [
"jquery",
"javascript",
"plugin",
"navigation",
"nav",
"menu",
"mobile",
"web",
"es8"
],
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --watch",
"docs": "cp -r dist docs"
},
"peerDependencies": {
"jquery": "^3.4.1"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"husky": "^3.0.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"sass-loader": "^7.1.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}