-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "@mikelgmh/cookie-manager",
"version": "1.2.8",
"description": "A cookies manager that can inject scripts dynamically.",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"source": "src/CookiesManager.ts",
"types": "dist/index.d.ts",
"files": [
"dist/*.{css,js,map,ts}",
"dist/src/*.{css,js,map,ts}",
"dist/src/**/*.{css,js,map,ts,svg}"
],
"repository": {
"type": "git",
"url": "https://github.com/mikelgmh/cookie-manager.git"
},
"homepage": "https://github.com/mikelgmh/cookie-manager#readme",
"bugs": {
"url": "https://github.com/mikelgmh/cookie-manager/issues",
"email": "[email protected]"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "microbundle",
"dev": "microbundle watch",
"version": "npx auto-version --patch"
},
"author": "Mikel Granero",
"license": "ISC",
"devDependencies": {
"auto-version-js": "^0.3.10",
"microbundle": "^0.15.1",
"sass": "^1.55.0"
}
}