-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.62 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.62 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "variant-web-storage",
"version": "0.1.2",
"description": "Web Storage with support for complex data types",
"repository": "julesferreira/variant-web-storage",
"keywords": [
"localstorage",
"serialization",
"typescript"
],
"author": "jules",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"analyze": "size-limit --why",
"build": "tsdx build",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"start": "tsdx watch",
"test": "tsdx test",
"test:coverage": "tsdx test --coverage --no-cache",
"test:watch": "tsdx test --watch --no-cache"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/variant-web-storage.esm.js",
"size-limit": [
{
"path": "dist/variant-web-storage.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/variant-web-storage.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@size-limit/preset-small-lib": "^6.0.3",
"husky": "^7.0.2",
"jest-mock-extended": "^2.0.4",
"size-limit": "^6.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^3.9.10"
},
"dependencies": {
"@digitak/bunker": "^3.0.7",
"base64-js": "^1.5.1"
},
"overrides": {
"ansi-regex": "2.1.1",
"node-notifier": "8.0.1"
}
}