-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
61
{
"name": "@prettygoodtech/namespaced-web-storage",
"version": "0.5.0",
"description": "A thin wrapper to use the Web Storage API with namespaces, easily, and safely.",
"keywords": [
"webstorage",
"webstorageapi",
"web-storage",
"web-storage-api",
"localstorage",
"sessionstorage",
"namespace",
"namespacing",
"typescript",
"esm",
"esmodule",
"es-module"
],
"type": "module",
"module": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"lib/",
"!lib/**/*.test.js",
"!lib/**/*.test.js.map",
"types/",
"!types/**/*.test.d.ts",
"src/",
"!src/**/*.test.ts",
"CHANGELOG.md",
"SECURITY.md"
],
"repository": {
"type": "git",
"url": "/~https://github.com/prettygoodtech/namespaced-web-storage.git"
},
"bugs": "/~https://github.com/prettygoodtech/namespaced-web-storage/issues",
"homepage": "/~https://github.com/prettygoodtech/namespaced-web-storage#readme",
"author": "Matei Bogdan Radu <opensource@mateiradu.dev>",
"license": "Apache-2.0",
"engines": {
"node": ">=16.13.0"
},
"scripts": {
"prebuild": "shx rm -rf lib types",
"build": "tsc",
"test": "c8 ava",
"prepare": "husky install"
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"ava": "^5.2.0",
"c8": "^7.13.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"node-storage-shim": "^2.0.1",
"prettier": "2.8.8",
"shx": "^0.3.4",
"typescript": "^5.0.4"
}
}