-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "tabnabbing-fix-polyfill",
"version": "1.0.5",
"description": "A polyfill to implement HTML Spec Make target=_blank imply noopener https://github.com/whatwg/html/pull/4330",
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"uglify": "uglifyjs dist/tabnabbing-fix-polyfill.js -cm -o dist/tabnabbing-fix-pollyfill.min.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zac1st1k/tabnabbing-fix-polyfill.git"
},
"keywords": [
"tabnabbing",
"polyfill"
],
"author": "Zac Xu",
"license": "MIT",
"bugs": {
"url": "https://github.com/zac1st1k/tabnabbing-fix-polyfill/issues"
},
"homepage": "https://github.com/zac1st1k/tabnabbing-fix-polyfill#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"browserslist": "^4.14.5",
"jest": "^26.6.1",
"uglify-js": "^3.11.4"
},
"dependencies": {
"babel-plugin-array-includes": "^2.0.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}