-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "saasus-sdk",
"version": "1.11.1",
"description": "Javascript SDK for SaaSus Platform",
"main": "./dist/saasus-sdk.js",
"module": "./dist/saasus-sdk.js",
"types": "./dist/main.d.ts",
"source": "./src/main.ts",
"files": [
"README.md",
"dist"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"clean": "rimraf dist",
"preinstall": "typesync || :",
"codegen:openapi": "openapi-generator-cli generate -g typescript-axios -i $npm_config_input_dir -o ./src/generated/${npm_config_module}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saasus-platform/saasus-sdk-javascript"
},
"author": "Anti-Pattern Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/saasus-platform/saasus-sdk-javascript/issues"
},
"homepage": "https://github.com/saasus-platform/saasus-sdk-javascript",
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.5.2",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/node": "^16.18.91",
"@types/rimraf": "^3.0.2",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"express": "^4.18.2",
"jest": "^29.3.1",
"node-mocks-http": "^1.12.1",
"rimraf": "^3.0.2",
"rollup": "^2.76.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^4.5.4",
"typesync": "^0.9.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"axios": "^1.1.3",
"crypto-js": "^4.1.1",
"date-and-time": "^2.4.1"
},
"peerDependencies": {
"axios": "^1.1.3",
"crypto-js": "^4.1.1",
"date-and-time": "^2.4.1"
}
}