-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 934 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
{
"name": "posthtml-aria-tabs",
"version": "1.0.0",
"description": "Write accessible tabs with minimal markup",
"keywords": [
"posthtml",
"html",
"posthtml-plugin",
"arias",
"tabs",
"lists",
"panels",
"automatic",
"markup",
"roles"
],
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "jonathantneal/posthtml-aria-tabs",
"homepage": "https://github.com/jonathantneal/posthtml-aria-tabs#readme",
"bugs": "https://github.com/jonathantneal/posthtml-aria-tabs/issues",
"dependencies": {
"posthtml": "^0.8.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"tap-spec": "^4.1.1",
"tape": "^4.2.2"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"tape": "tape test.js | tap-spec",
"test": "npm run lint && npm run tape"
},
"engines": {
"iojs": ">=2.0.0",
"node": ">=0.12.0"
}
}