forked from Opteo/google-ads-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.48 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
{
"name": "google-ads-api",
"version": "4.0.3",
"description": "Google Ads API Client Library for JavaScript",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"scripts": {
"prepare-release": "run-s test version",
"version": "standard-version",
"clean": "rm -rf build/",
"build": "tsc",
"watch": "tsc -w",
"test": "run-s clean build test:unit",
"test:lint": "prettier --list-different \"src/**/*.{ts,tsx}\"",
"test:unit": "jest /tests/",
"test:watch": "run-s clean build && run-p \"build -- -w\" \"test:unit -- --watch --runInBand\"",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\""
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "/src/.*\\.test\\.ts$",
"verbose": true,
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest_setup.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Opteo/google-ads-api.git"
},
"keywords": [
"google ads",
"google ads api",
"google ads nodejs",
"google ads javascript",
"adwords",
"adwords api",
"adwords nodejs",
"adwords javascript"
],
"author": "Opteo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Opteo/google-ads-api/issues"
},
"homepage": "https://github.com/Opteo/google-ads-api#readme",
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/lodash": "^4.14.112",
"@types/request": "^2.47.1",
"bluebird": "^3.5.2",
"dotenv": "^7.0.0",
"fs-extra": "^7.0.1",
"jest": "^24.1.0",
"json-schema-ref-parser": "^6.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"showdown": "^1.9.0",
"standard-version": "^5.0.2",
"ts-jest": "^24.1.0",
"tslint": "^5.12.1",
"turndown": "^5.0.3",
"typescript": "^3.7.2"
},
"dependencies": {
"bottleneck": "^2.16.1",
"google-ads-node": "2.0.4",
"lodash": "^4.17.15",
"redis": "^2.8.0",
"request": "^2.88.0"
}
}