-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "@lmcd/mock-storage",
"version": "0.2.0",
"main": "./dist/Storage.js",
"types": "./dist/Storage.d.ts",
"scripts": {
"test": "jest",
"dev": "tsc --watch",
"build": "tsc --build --force",
"lint": "eslint . --ext .ts"
},
"engines": {
"node": ">=16"
},
"bugs": {
"url": "https://github.com/lachlanmcdonald/mock-storage/issues"
},
"author": "Lachlan McDonald (https://github.com/lachlanmcdonald)",
"homepage": "https://github.com/lachlanmcdonald/mock-storage",
"repository": {
"type": "git",
"url": "git+https://github.com/lachlanmcdonald/mock-storage.git"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"license": "MIT",
"description": "An implementation of the Web Storage API intended for use in development/testing in non-browser environments.",
"devDependencies": {
"@lmcd/eslint-config": "^0.6.4",
"@stylistic/eslint-plugin": "^1.8.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"typescript": "^5.4.5"
},
"keywords": [
"WebStorage",
"localStorage",
"sessionStorage",
"test"
]
}