-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.05 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
{
"name": "localstorage-helpr",
"version": "0.0.0-semantic-release",
"description": "Handle window.localStorage more securely through this Helper, which applies some object validations and object parse to string (and vice versa).",
"main": "index.js",
"repository": "https://github.com/ipetinate/localstorage-helper.git",
"author": "Isac Petinate <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest --watchAll=true",
"test:nowatch": "jest --watchAll=false",
"build": "tsc"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^28.1.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-localstorage-mock": "^2.4.2",
"semantic-release": "^19.0.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
}
}