-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 1.11 KB
/
package.json
File metadata and controls
15 lines (15 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "linkedmd",
"version": "1.0.1",
"private": true,
"description": "Export the current LinkedIn profile page to Markdown.",
"scripts": {
"build": "npm run build:extension && npm run build:store-assets && npm run verify",
"build:extension": "python3 tools/build_extension.py --infile src/li_export_md.js --outfile extension/content.js",
"build:store-assets": "python3 tools/generate_store_assets.py --outdir store-assets",
"build:cws-package": "npm run build:extension && python3 tools/package_extension_zip.py --extension-dir extension --outfile dist/linkedmd-extension.zip",
"verify": "python3 tools/verify_artifacts.py --infile src/li_export_md.js --extension-content extension/content.js --index docs/index.html",
"dev": "python3 -m http.server 8787 --directory docs",
"check": "node --check src/li_export_md.js && node --check extension/background.js && node --check extension/popup.js && node --check extension/content.js && python3 -m py_compile tools/build_extension.py tools/package_extension_zip.py tools/verify_artifacts.py tools/generate_store_assets.py && npm run verify"
}
}