-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "@niur/google-admanager-api",
"version": "0.0.6",
"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' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "jest --config jestconfig.json",
"prerelease": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Niurmiguel/google-admanager-api.git"
},
"author": "Niurmiguel Gonzalez",
"license": "MIT",
"bugs": {
"url": "https://github.com/Niurmiguel/google-admanager-api/issues"
},
"homepage": "https://github.com/Niurmiguel/google-admanager-api#readme",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.5",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^0.27.2",
"google-auth-library": "^7.14.0",
"soap": "^0.43.0"
},
"keywords": [
"admanager",
"google",
"googleads",
"dfp",
"ads"
]
}