-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "menu-aim",
"version": "0.0.5",
"description": "Instant mega menus in vanilla JavaScript.",
"author": "Lim Yuan Qing",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/yuanqing/menu-aim.git"
},
"devDependencies": {
"concurrently": "^3.5.1",
"ecstatic": "^3.2.0",
"gzip-size-cli": "^2.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.1",
"opn-cli": "^3.1.0",
"prettier-standard": "^8.0.0",
"standard": "^11.0.0",
"uglify-js": "^3.3.12",
"watchify": "^3.11.0"
},
"scripts": {
"start": "concurrently \"watchify index.js --standalone menuAim --outfile example/bundle.js\" \"ecstatic example --port 8080\" \"opn 'http://0.0.0.0:8080/'\"",
"fix": "prettier-standard index.js",
"lint": "standard index.js",
"precommit": "lint-staged",
"weight": "uglifyjs index.js --compress --mangle --toplevel | gzip-size"
},
"lint-staged": {
"index.js": [
"standard",
"git add"
]
},
"keywords": [
"aim",
"dom",
"dropdown",
"html",
"instant",
"menu"
]
}