-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
47 lines (47 loc) · 933 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "pdf-text-extract",
"version": "1.5.0",
"description": "Extract text from pdfs that contain searchable pdf text",
"main": "index.js",
"bin": "./bin/pdf-text-extract.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec",
"pretest": "standard | snazzy"
},
"repository": {
"type": "git",
"url": "git://github.com/nisaacson/pdf-text-extract.git"
},
"keywords": [
"pdf",
"extract",
"pdftotext",
"text",
"extract"
],
"author": "Noah Isaacson",
"license": "BSD",
"readmeFilename": "README.md",
"devDependencies": {
"mocha": "~1.8.2",
"should": "~1.2.2",
"snazzy": "^2.0.1",
"standard": "^5.3.1"
},
"dependencies": {
"yargs": "^1.2.5"
},
"standard": {
"globals": [
"describe",
"before",
"beforeEach",
"after",
"afterEach",
"it"
]
}
}