-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.63 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
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
{
"name": "@dmgt/google-ad-manager-api",
"version": "12.0.1",
"description": "Typed Google Ad Manager API",
"main": "dist/index.js",
"scripts": {
"build": "yarn clean && yarn build:wsdl && yarn build:service && yarn build:api && tsc",
"clean": "rimraf dist && rimraf src/index.ts && rimraf src/api && rimraf src/service && rimraf src/wsdl",
"build:api": "vite-node src/build/api.ts && prettier --ignore-path .prettierignore --write src/api",
"build:service": "vite-node src/build/service.ts && prettier --ignore-path .prettierignore --write src/service",
"build:wsdl": "vite-node src/build/wsdl.ts",
"commit:state": "vite-node src/build/state.ts",
"start": "concurrently --names=build,test --prefix-colors=yellow,blue 'yarn start:build' 'yarn start:test'",
"start:build": "tsc --watch --preserveWatchOutput",
"test": "vitest test",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MailOnline/google-ad-manager-api.git"
},
"keywords": [
"gam",
"google",
"ad",
"manager"
],
"author": "MOL Ads <MOLAds@dmgmedia.tech>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MailOnline/google-ad-manager-api/issues"
},
"homepage": "https://github.com/MailOnline/google-ad-manager-api#readme",
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@commitlint/types": "20.5.0",
"@johngw/fs": "3.0.1",
"@types/lodash": "^4.17.24",
"@types/node": "24.12.0",
"@types/sax": "1.2.7",
"@types/source-map-support": "0.5.10",
"axios": "1.13.6",
"cheerio": "1.2.0",
"commitizen": "4.3.1",
"concurrently": "9.2.1",
"crawler": "2.0.2",
"cz-conventional-changelog": "3.3.0",
"dotenv-extended": "3.1.0",
"google-auth-library": "10.6.2",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"lodash": "^4.17.23",
"mkdirp": "3.0.1",
"prettier": "3.8.1",
"prettier-2": "npm:prettier@2.8.8",
"rimraf": "6.1.3",
"source-map-support": "0.5.21",
"typescript": "6.0.2",
"vite-node": "6.0.0",
"vitest": "4.1.1",
"wsdl-tsclient": "johngeorgewright/wsdl-tsclient#enum"
},
"lint-staged": {
"*.{md,json,js,jsx,ts,tsx,yml,yaml}": [
"yarn prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"assert-never": "^1.4.0",
"soap": "^1.8.0",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.8.1"
},
"peerDependencies": {
"google-auth-library": ">=9.14.1"
},
"resolutions": {
"soap": "1.1.4"
},
"packageManager": "yarn@4.13.0"
}