-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
35 lines (35 loc) · 941 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
{
"name": "a11y-toggle",
"version": "2.1.0",
"description": "A tiny script to make accessible content toggles.",
"homepage": "https://github.com/edenspiekermann/a11y-toggle",
"repository": {
"type": "git",
"url": "https://github.com/edenspiekermann/a11y-toggle.git"
},
"main": "a11y-toggle.js",
"keywords": [
"toggle",
"control",
"accessibility",
"a11y"
],
"author": "Kitty Giraudel",
"files": [
"a11y-toggle.js"
],
"scripts": {
"copy": "cp a11y-toggle.js example/main.js",
"minify": "uglifyjs a11y-toggle.js -o a11y-toggle.min.js -c -m",
"build": "npm run minify && npm run copy",
"predeploy": "npm run build",
"deploy": "git subtree push --prefix example origin gh-pages",
"lint": "semistandard a11y-toggle.js",
"test": "open tests/index.html"
},
"devDependencies": {
"mocha": "^2.4.5",
"semistandard": "^7.0.5",
"uglify-js": "^2.6.1"
}
}