-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "@kubric/asset-uploader",
"version": "1.0.1",
"description": "Upload assets to the kubric asset system",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test-watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/cirbuk/uploader.git"
},
"author": "Jophin Joseph",
"license": "MIT",
"bugs": {
"url": "https://github.com/cirbuk/uploader/issues"
},
"homepage": "https://github.com/cirbuk/uploader",
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "7.5.5",
"@kubric/utils": "^1.0.3",
"@rollup/plugin-babel": "5.1.0",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "8.4.0",
"axios": "^0.20.0",
"babel-jest": "24.8.0",
"jest": "24.8.0",
"lodash": "^4.17.15",
"math-expression-evaluator": "^1.2.17",
"rollup": "2.23.0",
"rollup-plugin-terser": "6.1.0",
"safe-eval": "0.4.1"
},
"peerDependencies": {
"@kubric/utils": "*",
"axios": "^0.20.0"
}
}