-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "browser-storage-polyfill",
"version": "1.0.11",
"description": "implementation for browser storage using localStorage ",
"main": "dist/",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json --outDir dist && tsc -p tsconfig.json --declaration --declarationDir dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@types/chrome": "^0.0.243",
"@types/webextension-polyfill": "^0.10.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"typescript": "^5.3.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrOttimista/browser-storage-polyfill.git"
},
"keywords": [
"chrome",
"extension",
"storage",
"localStorage"
],
"author": "Mrottimista",
"license": "ISC",
"bugs": {
"url": "https://github.com/MrOttimista/browser-storage-polyfill/issues"
},
"homepage": "https://github.com/MrOttimista/browser-storage-polyfill#readme",
"dependencies": {
"webextension-polyfill": "^0.10.0"
}
}