-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
37 lines (37 loc) · 1.32 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
{
"name": "inclusive-menu-button",
"version": "0.1.4",
"description": "A menu button module that implements the correct ARIA semantics and keyboard behavior.",
"main": "inclusive-menu-button.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard ./inclusive-menu-button.js",
"uglify": "uglifyjs inclusive-menu-button.js -o inclusive-menu-button.min.js",
"extract-version": "cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]'",
"add-version": "echo \"/*! inclusive-menu-button $(npm run extract-version --silent) — © Heydon Pickering */\n$(cat inclusive-menu-button.min.js)\" > inclusive-menu-button.min.js",
"build": "npm run uglify && npm run add-version",
"precommit": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Heydon/inclusive-menu-button.git"
},
"keywords": [
"menu",
"button",
"ARIA",
"accessibility",
"dropdown"
],
"author": "Heydon Pickering",
"license": "MIT",
"bugs": {
"url": "https://github.com/Heydon/inclusive-menu-button/issues"
},
"homepage": "https://github.com/Heydon/inclusive-menu-button#readme",
"devDependencies": {
"husky": "^0.13.3",
"standard": "^10.0.2",
"uglify-js": "^2.8.22"
}
}