-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "parse-base64-image",
"description": "Parse base64 image from HTML input then put the image on the file system",
"keywords": [
"file",
"HTML",
"base64",
"rich editor input",
"parser"
],
"version": "1.0.7",
"type": "module",
"author": {
"name": "Maulana Satya Adi",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"jsdom": "^16.5.3"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.23",
"@types/jsdom": "^16.2.10",
"jest": "^26.6.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/maulanasatyaadi/parse-base64-image.git"
},
"scripts": {
"build": "babel ./src --out-dir dist --extensions '.ts' --source-maps && tsc -d src/ParseBase64Image.ts --outDir dist/ --esModuleInterop",
"test": "jest",
"prepare": "npm run-script build"
},
"main": "dist/ParseBase64Image.js",
"types": "dist/ParseBase64Image.d.ts",
"files": [
"dist/ParseBase64Image.js",
"dist/ParseBase64Image.d.ts"
]
}