-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 KB
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
{
"name": "@quantcdn/quant-client",
"version": "4.15.4",
"description": "OpenAPI client for @quantcdn/quant-client",
"author": "QuantCDN",
"repository": {
"type": "git",
"url": "git+https://github.com/quantcdn/quant-ts-client.git"
},
"keywords": [
"@quantcdn/quant-client",
"axios",
"cdn",
"edge",
"openapi-client",
"openapi-generator",
"quant",
"quantcdn",
"quantcloud",
"typescript"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"sideEffects": false,
"scripts": {
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json",
"prepare": "npm run build",
"clean": "rm -Rf dist/",
"test": "npm run test:smoke",
"test:smoke": "node -e \"const api = require('./dist/index.js'); console.log('✓ SDK loads successfully'); console.log('✓ Exports:', Object.keys(api).length, 'items'); console.log('✓ Configuration available:', typeof api.Configuration); process.exit(0);\"",
"test:unit": "jest --testMatch=\"**/tests/**/*.test.js\"",
"test:all": "npm run build && npm run test:smoke && npm run test:unit",
"validate": "scripts/validate-sdk.sh",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"dependencies": {
"axios": "^1.6.1"
},
"devDependencies": {
"@types/node": "12.11.5 - 25.3.3",
"typescript": "^4.0 || ^5.0",
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.1.0"
},
"files": [
"dist/**/*",
"*.ts",
"tsconfig.json",
"README.md"
]
}