-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 903 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
{
"name": "local-data-storage",
"version": "0.4.4",
"description": "Just another LocalStorage wrapper.",
"type": "module",
"main": "./dist/LocalDataStorage.js",
"types": "./dist/LocalDataStorage.d.ts",
"repository": "github:munkacsimark/local-data-storage",
"keywords": [
"localstorage",
"local-storage"
],
"author": "Márk Munkácsi <[email protected]> (https://codermark.dev/)",
"license": "ISC",
"bugs": "https://github.com/munkacsimark/local-data-storage/issues",
"homepage": "https://github.com/munkacsimark/local-data-storage",
"scripts": {
"test": "jest --verbose",
"build": "rm -rf ./dist && tsc",
"deploy": "npm run test && npm run build && npm publish"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}