-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "nodejs-google-adwords",
"version": "1.9.1",
"description": "Google Ads API Client Library for Node.js",
"main": "./dist/index.js",
"scripts": {
"test": "jest --detectOpenHandles --verbose",
"coverage": "npm test -- --coverage --coverageReporters=text-lcov --colors | coveralls",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"lint": "tslint --config ./tslint.json --project ./tsconfig.json",
"prettify": "prettier --config ./.prettierrc --write \"./{src,__{tests,mocks}__}/**/*.{ts,js}\"",
"prettify-check": "prettier --check \"./{src,__{tests,mocks}__}/**/*.{ts,js}\"",
"yarn:import": "rm -rf ./yarn.lock && yarn import"
},
"typings": "./dist/index.d.ts",
"keywords": [
"Google Ads",
"Google Adwords",
"Node.js",
"Client Library"
],
"author": "mrdulin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:mrdulin/nodejs-google-adwords.git"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/dotenv": "^8.2.0",
"@types/faker": "^6.6.9",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.144",
"@types/node": "^20.2.5",
"@types/request": "^2.48.3",
"@types/request-promise": "^4.1.48",
"@types/xml2js": "^0.4.5",
"coveralls": "^3.1.1",
"dotenv": "^16.1.3",
"faker": "^6.6.6",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"dependencies": {
"lodash": "^4.17.15",
"moment": "^2.24.0",
"pretty-data": "^0.40.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"soap": "^0.30.0",
"xml2js": "^0.4.22"
},
"engines": {
"node": ">=8.11.4"
},
"files": [
"dist"
]
}