-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "nestjs-chargebee",
"version": "0.1.0",
"exports": {
".": {
"types": "./build/types/main.d.ts",
"import": "./build/esm/main.js",
"default": "./build/cjs/main.js"
},
"./models": {
"types": "./build/types/models/mod.d.ts",
"import": "./build/esm/models/mod.js",
"default": "./build/cjs/models/mod.js"
}
},
"main": "build/cjs/main.js",
"types": "build/types/main.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/voiceflow/nestjs-chargebee.git"
},
"scripts": {
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"build": "yarn run-p build:cjs build:esm build:types",
"prebuild:cjs": "yarn rimraf build/cjs",
"build:cjs": "yarn prebuild:cjs && yarn swc src -d build/cjs --config module.type=commonjs && yarn postbuild:cjs",
"postbuild:cjs": "touch build/cjs/package.json && echo '{ \"type\": \"commonjs\" }' > build/cjs/package.json",
"prebuild:esm": "yarn rimraf build/esm",
"build:esm": "yarn prebuild:esm && yarn swc src -d build/esm --config module.type=es6 && tsc-alias --outDir build/esm -p tsconfig.build.json && yarn postbuild:esm",
"postbuild:esm": "touch build/esm/package.json && echo '{ \"type\": \"module\" }' > build/esm/package.json",
"build:types": "yarn tsc -p tsconfig.build.json",
"test": "yarn jest --passWithNoTests",
"lint": "yarn eslint --fix src",
"lint:check": "yarn eslint src"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js}": "yarn eslint --fix",
"*.{md,json,yml}": "yarn prettier --write"
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"chargebee-typescript": "2.30.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@nestjs/testing": "^10.1.3",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.72",
"@swc/jest": "^0.2.27",
"@types/jest": "^29.5.3",
"@types/q": "^1.5.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^3.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"semantic-release": "^21.0.7",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@nestjs/common": "^9 || ^10",
"rxjs": "^7"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.18.0",
"yarn": "3.4.1"
}
}