-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.72 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"version": "1.0.3",
"name": "pulsar-live-region",
"description": "Provide simple methods for announcing changes to screen readers",
"homepage": "https://github.com/jadu/pulsar-live-region",
"author": "Paul Stanton <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/jadu/pulsar-live-region.git"
},
"bugs": {
"url": "http://github.com/jadu/pulsar/issues"
},
"main": "index",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"scripts": {
"build": "browserify index.js --outfile dist/LiveRegion.js",
"coverage": "mochify --transform [ babelify ] --plugin [ mochify-istanbul --exclude '**/+(tests|node_modules|libs)/**/*' --report lcov --dir ./coverage --instrumenter babel-istanbul] --reporter spec ./test/harness './test/unit/**/*Test.js'",
"jshint": "jshint .",
"mocha": "mochify -r ./test/harness --recursive --reporter spec",
"test": "npm run mocha"
},
"dependencies": {
"jquery": "~3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^16.5.1",
"chai": "^2.3.0",
"grunt": "^1.0.3",
"grunt-browserify": "^5.0.0",
"grunt-contrib-watch": "^1.0.0",
"jshint": "^2.8.0",
"matchdep": "^2.0.0",
"minimatch": ">=3.0.2",
"mochify": "^6.6.0",
"mochify-istanbul": "^2.4.2",
"sinon": "^2.4.1",
"sinon-chai": "^2.8.0",
"sinon-jquery": "^1.0.2"
},
"license": "MIT",
"directories": {
"test": "test"
},
"keywords": [
"jadu",
"pulsar",
"calendar",
"aria live"
]
}