-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 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
{
"name": "dwnld-attr-polyfill",
"version": "1.1.7",
"description": "Polyfills the a[download] attribute",
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "xo",
"prepare": "npm run build"
},
"author": "Jelmer de Maat",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/jelmerdemaat/dwnld-attr-polyfill.git"
},
"bugs": {
"url": "https://github.com/jelmerdemaat/dwnld-attr-polyfill/issues"
},
"homepage": "https://github.com/jelmerdemaat/dwnld-attr-polyfill",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"rollup": "^1.27.9",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2",
"xo": "^0.25.3"
},
"xo": {
"envs": [
"browser"
],
"prettier": true,
"ignores": [
"*.config.js"
]
},
"prettier": {
"singleQuote": true,
"bracketSpacing": true
},
"keywords": [
"download",
"download attribute",
"download polyfill",
"polyfill",
"dwnld"
]
}