-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "gandalf",
"description": "High configurable banner for blocking internet explorer users",
"version": "1.0.0",
"author": "Giulio Fagioli <[email protected]>",
"license": "MIT",
"scripts": {
"build": "microbundle --jsx h --no-sourcemap --external none",
"dev": "microbundle watch --jsx h --no-sourcemap --external none",
"test": "yarn mocha --require @babel/register,ignore-styles,jsdom-global/register test/**/*.js",
"release": "yarn build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && yarn publish",
"size": "echo \"gzip size: $(gzip-size $npm_package_main)\""
},
"source": "src/index.js",
"main": "dist/gandalf.umd.js",
"module": "dist/gandalf.module.js",
"unpkg": "dist/gandalf.umd.js",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-react-jsx": "^7.9.1",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"gzip-size-cli": "^3.0.0",
"ignore-styles": "^5.0.1",
"jsdom": "^16.2.1",
"jsdom-global": "^3.0.2",
"microbundle": "0.12.0-next.8",
"mocha": "^7.1.1",
"vhtml": "^2.2.0"
},
"files": [
"src",
"dist"
],
"keywords": [
"internet explorer blocker",
"ie",
"blocker",
"gandalf"
]
}