-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
74 lines (74 loc) · 2.8 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
{
"name": "linkedin-to-json-resume-exporter",
"version": "3.2.3",
"description": "Browser tool to grab details from your open LinkedIn profile page and export to JSON Resume Schema",
"private": true,
"main": "src/main.js",
"scripts": {
"test": "\"Error: no test specified\" && exit 1",
"lint": "eslint \"**/*.{js,ts}\"",
"lint:fix": "eslint \"**/*.{js,ts}\" --fix",
"type-check": "tsc --noEmit",
"babel": "babel src --out-dir build",
"webpack": "npx webpack --config webpack.prod.js",
"webpack:debug": "npx webpack --config webpack.dev.js",
"build:bookmarklet": "node ./build-scripts/prep-dirs.js && npm run webpack && node ./build-scripts/build-bookmarklet.js",
"build:browserext": "node ./build-scripts/prep-dirs.js && npm run webpack && node ./build-scripts/prep-browserext.js",
"build:browserext-debug": "node ./build-scripts/prep-dirs.js && npm run webpack:debug && node ./build-scripts/prep-browserext.js",
"package:browserext": "node ./build-scripts/prep-dirs.js && npm run build:browserext && node ./build-scripts/package-browserext.js",
"copy:debug-js-win": "npm run build:browserext-debug && less build/main.js | CLIP"
},
"author": {
"name": "Joshua Tzucker",
"url": "https://joshuatz.com/?utm_source=package"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.9",
"@types/archiver": "^5.3.1",
"@types/chrome": "0.0.180",
"@types/fs-extra": "^9.0.13",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"archiver": "^5.3.0",
"babel-loader": "^8.2.4",
"bookmarklet": "",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.1",
"prettier": "^2.6.2",
"replace": "^1.2.1",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"babel": {
"plugins": [
"@babel/transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": "defaults"
},
"include": [
"transform-regenerator"
]
}
]
]
},
"dependencies": {
"@dan/vcards": "^2.10.0"
}
}