-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 994 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 994 Bytes
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
{
"name": "@videomatik/api",
"version": "2.2.0",
"description": "Videomatik's External API to render Videos",
"author": "Videomatik Team",
"homepage": "https://videomatik.com.br",
"license": "MIT",
"main": "dist/index.js",
"bugs": {
"url": "https://videomatik.com.br"
},
"repository": {
"type": "git",
"url": "https://github.com/Videomatik/node-sdk"
},
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"build": "BABEL_ENV=production babel src/index.js -d dist/",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"axios": "^0.19.0",
"probe-image-size": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-polyfill": "^6.26.0",
"rimraf": "^3.0.2"
}
}