-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "linkedin-pdf-to-json",
"version": "1.5.2",
"description": "Converts a LinkedIn profile PDF to JSON.",
"main": "./index.js",
"scripts": {
"test": "jasmine JASMINE_CONFIG_PATH=test/spec/support/jasmine.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaacmast/linkedin-pdf-to-json.git"
},
"keywords": [
"lptj",
"linkedin",
"pdf",
"json",
"profile",
"parse"
],
"author": "Isaac Mast <[email protected]>",
"bin": {
"lptj": "./bin/linkedin_pdf_to_json.js"
},
"devDependencies": {
"chalk": "~1.1.3",
"commander": "~2.9.0",
"jasmine": "~2.4.1"
},
"dependencies": {
"jsonfile": "~2.3.1",
"pdf-text": "git://github.com/isaacmast/node-pdf-text.git#master"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/isaacmast/linkedin-pdf-to-json/issues"
},
"homepage": "https://github.com/isaacmast/linkedin-pdf-to-json#readme"
}