-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 KB
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
{
"name": "smart-table-keyboard",
"version": "0.1.0",
"description": "provide keyboard navigation to widget implementing the grid pattern",
"main": "./dist/smart-table-keyboard.js",
"module": "./index.js",
"scripts": {
"test": "npm run build:test && cat ./test/dist/test.js | tape-run",
"build": "rollup -c",
"build:test": "rollup -c ./test/rollup.config.js",
"build:examples": "rollup -c ./examples/grid-layout/rollup.config.js && rollup -c ./examples/table/rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-table/smart-table-keyboard.git"
},
"keywords": [
"grid",
"a11y",
"table",
"keyboard",
"datatable",
"smart-table"
],
"author": "Laurent Renard",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-table/smart-table-keyboard/issues"
},
"homepage": "https://github.com/smart-table/smart-table-keyboard#readme",
"devDependencies": {
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-node-resolve": "^3.0.0",
"tape-run": "^3.0.0",
"zora": "^0.3.0"
}
}