-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 KB
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": "@jdej/webstoragemanager",
"version": "1.0.0",
"description": "A tiny library for handling WebStorage",
"author": "JdeJ (http://github.com/JdeJ)",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/client.d.ts",
"scripts": {
"build": "yarn clean && tsc",
"ci": "yarn test-build & npm t & wait",
"clean": "rm -Rf dist && mkdir dist",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test": "jest",
"test:verbose": "jest --verbose",
"test:coverage": "jest --coverage",
"watch": "yarn clean && tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JdeJ/WebStorageManager.git"
},
"keywords": [
"WebStorage",
"Typescript",
"Javascript",
"Vanilla",
"LocalStorage",
"SessionStorage"
],
"bugs": {
"url": "https://github.com/JdeJ/WebStorageManager/issues"
},
"homepage": "https://github.com/JdeJ/WebStorageManager#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.2",
"@types/jsdom": "^16.2.3",
"eslint": "^7.0",
"jest": "^25.5",
"jest-date-mock": "^1.0.8",
"jsdom": "^16.2",
"ts-jest": "^25.5",
"typescript": "^3.8"
}
}