-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 980 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
{
"name": "@dafcoe/storage-monitor",
"version": "1.0.1",
"description": "Simple monitor for local and session storage usage",
"keywords": [
"localstorage",
"sessionstorage",
"monitor",
"typescript"
],
"repository": "https://github.com/dafcoe/storage-monitor",
"homepage": "https://github.com/dafcoe/storage-monitor",
"bugs": {
"url": "https://github.com/dafcoe/storage-monitor/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Daf Coe",
"email": "[email protected]"
},
"private": false,
"files": [
"dist/**/*"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build:dev": "rm -rf dist && tsc --watch",
"build:prod": "rm -rf dist && tsc --build && uglifyjs-folder dist -e -x .js -o dist"
},
"devDependencies": {
"@types/md5": "^2.3.1",
"typescript": "^4.3.2",
"uglifyjs-folder": "^3.0.0"
},
"dependencies": {
"md5": "^2.3.0"
}
}