-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "aspera-on-cloud-sdk-js",
"version": "0.1.0",
"author": "David Wosk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dwosk/aspera-on-cloud-sdk-js.git"
},
"browser": "dist/js/aspera-on-cloud-sdk.js",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "npm run clean & npm run build:cjs && webpack --mode production",
"build:cjs": "tsc -p tsconfig.json",
"clean": "rm -rf ./dist",
"docs": "typedoc ./src --out ./dist/docs/",
"generate": "openapi-generator generate -g typescript-axios -i Aspera\\ On\\ Cloud\\ API-.json --additional-properties=useSingleRequestParameter=true -o ./src/api",
"dev": "webpack --mode development --progress --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.2.5",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typedoc": "^0.20.37",
"typescript": "^4.2.4",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
},
"dependencies": {
"axios": "^0.21.4",
"njwt": "^1.1.0"
}
}