-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 972 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "localgeneric",
"version": "1.2.0",
"description": "Local Storage wrapper with TypeScript generics support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --env=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanbarr/localgeneric.git"
},
"keywords": [
"local",
"storage",
"typescript",
"wrapper",
"generics",
"interface"
],
"author": "Ryan Barr",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanbarr/localgeneric/issues"
},
"homepage": "https://github.com/ryanbarr/localgeneric#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.5.0",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0"
},
"dependencies": {
"typescript": "^5.0.4"
}
}