-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 899 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
{
"name": "magiccap-uploader-api",
"version": "1.0.5",
"description": "A Node/browser version of the MagicCap uploader API.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/magiccap/magiccap-uploader-api.git"
},
"keywords": [
"MagicCap",
"browser",
"node"
],
"author": "Jake Gealer",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/magiccap/magiccap-uploader-api/issues"
},
"homepage": "https://github.com/magiccap/magiccap-uploader-api#readme",
"dependencies": {
"node-fetch": "^2.6.0",
"typescript": "^3.5.3"
},
"devDependencies": {
"expose-loader": "^0.7.5",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"scripts": {
"build": "tsc --declaration true --declarationMap true",
"prepack": "npm run build && npm run create-min",
"create-min": "webpack"
}
}