generated from johngeorgewright/ts-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.98 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
{
"name": "@dmgt/google-ad-manager-api",
"version": "8.1.0",
"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": "ts-node src/build/api.ts && prettier --ignore-path .prettierignore --write src/api",
"build:service": "ts-node src/build/service.ts && prettier --ignore-path .prettierignore --write src/service",
"build:wsdl": "ts-node src/build/wsdl.ts",
"commit:state": "ts-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",
"start:test": "jest --watch",
"test": "jest",
"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": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/types": "19.5.0",
"@jest/types": "29.6.3",
"@johngw/fs": "3.0.1",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.0",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/jest": "29.5.13",
"@types/lodash": "^4.17.9",
"@types/node": "20.16.7",
"@types/sax": "1.2.7",
"@types/source-map-support": "0.5.10",
"axios": "1.7.7",
"cheerio": "1.0.0",
"commitizen": "4.3.0",
"concurrently": "9.0.1",
"crawler": "2.0.2",
"cz-conventional-changelog": "3.3.0",
"dotenv-extended": "2.9.0",
"google-auth-library": "9.14.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"lodash": "^4.17.21",
"mkdirp": "3.0.1",
"prettier": "3.3.3",
"prettier-2": "npm:prettier@2.8.8",
"rimraf": "6.0.1",
"semantic-release": "24.1.1",
"source-map-support": "0.5.21",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"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.3.0",
"soap": "^1.1.4",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.7.0"
},
"peerDependencies": {
"google-auth-library": "^9.14.1"
},
"resolutions": {
"soap": "1.1.4"
},
"packageManager": "yarn@4.5.1"
}