-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 870 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
{
"name": "benthic-file-converter",
"version": "1.0.0",
"description": "a Converter which encode any file to base64",
"main": "index.js",
"private": false,
"babel": {
"presets": [
"@babel/preset-react"
]
},
"scripts": {
"publish:npm": "rm -rf dist && mkdir dist && babel ./src -d dist --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-benthic/file-converter.git"
},
"keywords": [
"file",
"base64"
],
"author": "©BenthicTeam",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-benthic/file-converter/issues"
},
"homepage": "https://github.com/open-benthic/file-converter#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-react": "^7.9.1"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}