-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.36 KB
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
{
"name": "@a1local/adpages-cli",
"version": "0.1.1",
"description": "Lightweight local CLI wrapper for AdPages UTM, schema, and ads-copy helpers.",
"type": "module",
"license": "MIT",
"author": {
"name": "A1 Local",
"url": "https://a1local.com.au/"
},
"homepage": "https://github.com/a1local/adpages-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/a1local/adpages-cli.git"
},
"bugs": {
"url": "https://github.com/a1local/adpages-cli/issues"
},
"funding": {
"type": "custom",
"url": "https://a1local.com.au/extensions/"
},
"publishConfig": {
"access": "public"
},
"bin": {
"adpages": "bin/adpages.mjs"
},
"files": [
"bin",
"README.md",
"LICENSE"
],
"dependencies": {
"@a1local/adpages-audit-core": "^0.1.0"
},
"scripts": {
"smoke": "node ./bin/adpages.mjs help && node ./bin/adpages.mjs utm --url https://example.com/landing --source google --medium cpc --campaign emergency-plumbing && node ./bin/adpages.mjs schema --name 'Example Plumbing' --url https://example.com --phone '08 0000 0000' --area Perth --area Fremantle && node ./bin/adpages.mjs ads-check --headline 'Emergency Plumber Perth' --headline 'Same Day Repairs' --headline 'Call Now' --description 'Fast local plumbing help with clear pricing.' --description 'Book a local plumber today.'"
}
}