-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 737 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 737 Bytes
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
{
"name": "customevent",
"version": "1.0.1",
"description": "CustomEvent ponyfill",
"license": "MIT",
"repository": "awcross/customevent",
"author": {
"name": "Alex Cross",
"url": "alexcross.io"
},
"engines": {
"node": ">=4"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "xo && nyc ava"
},
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"custom",
"event",
"customevent",
"ponyfill",
"polyfill",
"shim",
"browser"
],
"devDependencies": {
"ava": "^1.2.1",
"codecov": "^3.2.0",
"jsdom": "^13.2.0",
"nyc": "^13.2.0",
"xo": "^0.24.0"
},
"xo": {
"envs": [
"node",
"browser"
],
"rules": {
"no-var": 0
}
}
}