-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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": "safer-web-storage",
"version": "2.0.0",
"description": "Handle all exception when storage is not available due to user's browser settings. Swap to in-memory storage if sessionStorage is not available.",
"keywords": [
"localStorage",
"sessionStorage",
"in-memory storage"
],
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"start": "parcel example/index.html",
"build": "rm -rf dist .parcel-cache && parcel build",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"author": "Vitalii Saienko <modestfake@gmail.com> (https://github.com/modestfake)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/modestfake/safer-web-storage.git"
},
"bugs": {
"url": "https://github.com/modestfake/safer-web-storage/issues"
},
"homepage": "https://github.com/modestfake/safer-web-storage#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@parcel/packager-ts": "^2.8.0",
"@parcel/transformer-typescript-types": "^2.8.0",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"parcel": "^2.8.0",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}