-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.1 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
47
48
49
50
51
52
{
"name": "ublob",
"version": "1.0.1",
"description": "Helper module for working with files.",
"keywords": [
"npm",
"yarn",
"module",
"javascript",
"react",
"files",
"blob",
"base64",
"browser",
"easy",
"easy-to-use",
"open-in-browser",
"open-in-new-tab"
],
"author": "Martik Avagyan <dev@martikavagyan.com> (https://github.com/m-avagyan)",
"homepage": "https://github.com/m-avagyan/ublob#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/m-avagyan/ublob.git"
},
"bugs": {
"url": "https://github.com/m-avagyan/ublob/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --collect-coverage",
"build": "rm -rf dist && tsc",
"build:watch": "rm -rf dist && tsc -w"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.3"
}
}