-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "resource-gen",
"version": "1.0.0",
"author": "Vincent Reynaud <mail@vincentreynaud.de>",
"description": "Utility to parse webloc & browser-printed pdf files into a comprehensive list of links in Markdown",
"keywords": [
"bookmark",
"resource-manager",
"utility",
"file-system",
"markdown",
"nodejs",
"web-link",
"link",
"url",
"parse"
],
"repository": {
"type": "git",
"url": "https://github.com/vincentreynaud/bookmark-resource-generator.git"
},
"bugs": {
"url": "https://github.com/vincentreynaud/bookmark-resource-generator/issues"
},
"license": "MIT",
"main": "cli.js",
"scripts": {
"gen": "node cli.js",
"lint": "eslint . --ext .js",
"test": "jest",
"test:gen": "node cli.js '/Users/vincentreynaud/Dropbox/1 Web Development/1 DCI/tools-and-resources' dev-tools-and-resources -l -i _snippets courses liked gatsby -t 'Useful Web Development Links'",
"pre-publish": "npm run lint && npm run test && npm run gen --"
},
"bin": {
"resource-gen": "./cli.js"
},
"dependencies": {
"file-system": "^2.2.2",
"path": "^0.12.7",
"pdf-parse": "^1.1.1",
"yargs": "^13.2.4"
},
"engines": {
"node": ">=11.4.0"
},
"os": [
"darwin",
"linux"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-plugin-node": "^9.1.0",
"jest": "^24.8.0"
}
}