-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
45
46
47
48
49
50
51
{
"name": "focus-group",
"version": "0.3.1",
"description": "Create a group of nodes with special focusing powers",
"main": "index.js",
"scripts": {
"demo-bundle": "browserify demo/index.js -o demo/demo-bundle.js",
"demo-watch": "watchify demo/index.js -d -v -o demo/demo-bundle.js",
"demo-dev": "npm run demo-watch & http-server demo",
"test-dev": "karma start",
"test": "karma start --single-run --browsers PhantomJS --reporters progress,coverage,coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtheclark/focus-group.git"
},
"keywords": [
"focus",
"accessibility",
"a11y",
"arrows",
"keyboard",
"navigation",
"aria"
],
"author": "David Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtheclark/focus-group/issues"
},
"homepage": "https://github.com/davidtheclark/focus-group#readme",
"devDependencies": {
"browserify": "13.0.0",
"browserify-istanbul": "0.2.1",
"d3-queue": "2.0.2",
"eslint": "^6.6.0",
"http-server": "0.8.5",
"karma": "0.13.19",
"karma-browserify": "5.0.1",
"karma-chrome-launcher": "0.2.2",
"karma-coverage": "0.5.3",
"karma-coveralls": "1.1.2",
"karma-mocha": "0.2.1",
"karma-phantomjs-launcher": "1.0.0",
"mocha": "2.4.5",
"phantomjs-prebuilt": "2.1.3",
"power-assert": "1.2.0",
"simulant": "0.2.0",
"watchify": "3.7.0"
}
}