-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.13 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
{
"name": "elem-dataset",
"version": "2.0.0",
"description": "HTML5 HTMLElement.dataset ponyfill",
"license": "MIT",
"repository": "awcross/elem-dataset",
"author": {
"name": "Alex Cross",
"url": "https://alexcross.io"
},
"main": "dist/index.js",
"module": "index.js",
"files": [
"dist",
"index.js"
],
"keywords": [
"html",
"htmlelement",
"element",
"data",
"dataset",
"html5",
"polyfill",
"ponyfill",
"attr",
"attributes",
"custom",
"property"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm test && npm run bundle",
"bundle": "mkdir dist && babel index.js > dist/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "npm run clean && npm run bundle",
"test": "xo && nyc ava"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"ava": "^1.2.1",
"coveralls": "^3.0.2",
"jsdom": "^13.2.0",
"nyc": "^13.2.0",
"xo": "^0.24.0"
},
"babel": {
"comments": false,
"presets": [
"@babel/preset-env"
]
},
"xo": {
"envs": [
"browser",
"es6"
],
"rules": {
"padded-blocks": 0
}
}
}