-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 930 Bytes
/
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
{
"name": "@stormid/cookie-banner",
"version": "1.0.0-alpha.32",
"description": "GDPR compliant cookie banner",
"author": "stormid",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/stormid/components/tree/master/packages/cookie-banner",
"private": false,
"main": "dist/index.js",
"source": "src/index.js",
"module": "dist/index.modern.mjs",
"unpkg": "dist/index.umd.js",
"browser": "dist/index.umd.js",
"keywords": [
"stormid",
"cookies",
"banner",
"gdpr",
"component"
],
"scripts": {
"build": "microbundle --name CookieBanner",
"test": "jest --coverage",
"dev": "webpack-dev-server --config example/webpack.config.js --mode development",
"prod": "webpack --config example/webpack.config.js --mode production",
"prepublish": "npm run -s build"
},
"gitHead": "042ec0cbf12848b50c5962a5c8ab139cfb04df39"
}