-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 885 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
33
34
35
36
37
38
{
"name": "store-buddy",
"version": "4.1.1",
"description": "A localStorage and sessionStorage wrapper, adding type hinting and type safety.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest src/index.spec.ts"
},
"keywords": [
"storage",
"localstorage",
"util",
"utility"
],
"author": "George Pickering",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/geopic/store-buddy.git"
},
"bugs": {
"url": "https://github.com/geopic/store-buddy/issues"
},
"homepage": "https://github.com/geopic/store-buddy",
"devDependencies": {
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
}
}