-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "universal-localstorage",
"version": "2.0.0",
"description": "localstorage that works in node and the browser",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublish": "npm run build",
"build": "tsc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/eddiemoore/universal-localstorage.git"
},
"keywords": [
"localstorage",
"node",
"universal",
"isomorphic"
],
"author": "Ed Moore",
"license": "ISC",
"bugs": {
"url": "https://github.com/eddiemoore/universal-localstorage/issues"
},
"homepage": "https://github.com/eddiemoore/universal-localstorage",
"devDependencies": {
"@types/node": "^17.0.38",
"@types/node-localstorage": "^1.3.0",
"c8": "^7.11.3",
"husky": "^8.0.1",
"jsdom": "^19.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"vitest": "^0.13.1",
"webpack": "^1.10.1"
},
"dependencies": {
"node-localstorage": "^2.2.1"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}