This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rebilly-js-sdk",
"version": "49.0.0",
"description": "Official Rebilly API JS library for the browser and Node",
"types": "./dist/rebilly-js-sdk.d.ts",
"main": "./dist/rebilly-js-sdk.umd.js",
"module": "./dist/rebilly-js-sdk.es.js",
"exports": {
".": {
"import": "./dist/rebilly-js-sdk.es.js",
"require": "./dist/rebilly-js-sdk.umd.js"
}
},
"scripts": {
"build": "vite build",
"build:dev": "vite build --mode dev",
"build:prod": "npm run build",
"clean": "rimraf dist && rimraf coverage",
"prepublishOnly": "npm run build:prod && npm run ts:bundle-types-from-redocly",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:check-build-types": "npx tsc -p ./test/check-build-types.tsconfig.json",
"ts:generate-types": "node ./scripts/type-generation/generate-ts-types.js",
"ts:merge-types": "node ./scripts/merge-types.js",
"ts:compile": "npx tsc -p tsc-emit.json --typeRoots typings",
"ts:compile-and-merge": "yarn ts:compile && yarn ts:merge-types",
"ts:bundle-types-from-redocly": "yarn ts:generate-types && yarn ts:compile-and-merge",
"build-api-definitions": "cd ../api-definitions && yarn build-for-js-sdk",
"ts:bundle-types-from-local": "yarn build-api-definitions && yarn ts:generate-types --local && yarn ts:compile-and-merge"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rebilly/rebilly-js-sdk.git"
},
"keywords": [
"Rebilly",
"js",
"sdk",
"library",
"node"
],
"files": [
"dist"
],
"author": "Rebilly",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rebilly/rebilly-js-sdk/issues"
},
"homepage": "https://github.com/Rebilly/rebilly-js-sdk#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"axios-mock-adapter": "^1.9.0",
"c8": "^7.11.0",
"clone-deep": "^1.0.0",
"cross-env": "^5.0.1",
"dotenv": "^4.0.0",
"faker": "^4.1.0",
"minimist": "^1.2.5",
"openapi-typescript": "3.3.1",
"typescript": "^4.1.3",
"vite": "^2.8.6",
"vitest": "^0.7.12",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"axios": "^0.26.1",
"nanoid": "^3.1.25"
},
"resolutions": {
"glob-parent": "^5.1.2",
"serialize-javascript": "^3.1.0"
}
}