forked from perminder-klair/resume-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "resume-parser",
"version": "1.1.1",
"description": "A Simple NodeJs library to parse Resume / CV to JSON.",
"main": "src/index.js",
"author": "Parminder Klair",
"contributors": [
"Petar Petrov (https://github.com/Mihaylov93)"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/perminder-klair/resume-parser.git"
},
"bugs": {
"url": "https://github.com/perminder-klair/resume-parser/issues"
},
"homepage": "https://github.com/perminder-klair/resume-parser",
"keywords": [
"resume",
"cv",
"parser",
"resume parser",
"cv parser"
],
"scripts": {
"test": "node test.js",
"lint": "prettier --single-quote --trailing-comma es5 --write test.js src/*.js src/**/*.js src/**/**/*.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"request": "^2.83.0",
"textract": "^2.2.0",
"tracer": "^0.8.11",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"prettier": "1.10.2"
}
}