-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.02 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
{
"name": "@guardian/google-admanager-api",
"version": "2.3.0",
"description": "Google Ad Manager API Client Library for NodeJs",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"start": "tsc && ts-node -r tsconfig-paths/register ./lib/index.ts",
"build": "rm -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts'",
"prettier:check": "prettier . --check --cache",
"prettier:fix": "prettier . --write --cache",
"test": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guardian/google-admanager-api.git"
},
"author": "Niurmiguel Gonzalez",
"license": "MIT",
"bugs": {
"url": "https://github.com/guardian/google-admanager-api/issues"
},
"contributors": [
{
"name": "Niurmiguel Gonzalez",
"url": "https://github.com/niurmiguel"
},
{
"name": "The Guardian",
"url": "https://github.com/guardian"
}
],
"homepage": "https://github.com/guardian/google-admanager-api#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@guardian/eslint-config-typescript": "^12.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^20.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.0.0",
"open": "^10.1.0",
"prettier": "^3.3.3",
"server-destroy": "^1.0.1",
"supertest": "^6.2.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.0",
"typescript": "5.5.4"
},
"dependencies": {
"axios": "^1.7.4",
"google-auth-library": "^9.13.0",
"soap": "^1.1.1"
},
"keywords": [
"admanager",
"google",
"googleads",
"dfp",
"ads"
]
}