-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.34 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
54
55
56
57
58
59
60
{
"name": "hardtack",
"description": "An ultra-light (373 bytes) library for working with cookies in JavaScript",
"version": "5.0.1",
"files": [
"index.js",
"src/**/*.js"
],
"license": "MIT",
"keywords": [
"cookie",
"cookies",
"js-cookie",
"browser",
"front-end"
],
"size-limit": [
{
"name": "Full library",
"path": "index.js",
"limit": "373 B"
},
{
"name": "Method get",
"path": "src/get/index.js",
"limit": "104 B"
},
{
"name": "Method set",
"path": "src/set/index.js",
"limit": "208 B"
},
{
"name": "Method remove",
"path": "src/remove/index.js",
"limit": "266 B"
}
],
"repository": {
"type": "git",
"url": "https://github.com/alik0211/hardtack.git"
},
"bugs": "https://github.com/alik0211/hardtack/issues",
"author": "Ali Gasymov <[email protected]> (https://www.gasymov.com/)",
"homepage": "https://github.com/alik0211/hardtack#readme",
"scripts": {
"test": "jest",
"size": "size-limit",
"prepublishOnly": "yarn test && yarn size"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.10",
"@size-limit/preset-small-lib": "4.9.1",
"dual-publish": "1.0.3",
"jest": "26.6.3",
"prettier": "2.2.1",
"size-limit": "4.9.1"
}
}