-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
32 lines (32 loc) · 898 Bytes
/
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
{
"name": "linkedin-to-json-resume",
"version": "2.0.0",
"description": "LinkedIn to JSON Résumé",
"main": "src/js/main.js",
"scripts": {
"start": "npm run develop",
"develop": "parcel src/index.html",
"build": "parcel build src/index.html --public-url ./",
"lint": "./node_modules/jshint/bin/jshint src/js/*.js",
"test": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JMPerez/linkedin-to-json-resume.git"
},
"author": "José M. Pérez",
"license": "MIT",
"bugs": {
"url": "https://github.com/JMPerez/linkedin-to-json-resume/issues"
},
"homepage": "https://github.com/JMPerez/linkedin-to-json-resume#readme",
"devDependencies": {
"jshint": "^2.9.6",
"parcel-bundler": "^1.9.7",
"typescript": "^3.5.2"
},
"dependencies": {
"isomorphic-unzip": "^1.1.1",
"moment": "^2.18.1"
}
}