-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 913 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
{
"name": "aa-doc-classifier",
"version": "0.0.1",
"description": "A docker container containing a node API to extract the file type of a pdf file. Currently it supports Form 10-K & Form 8-K file types.",
"main": "server.js",
"dependencies": {
"dotenv": "^5.0.1",
"express": "^4.16.3",
"helmet": "^3.12.1",
"mime-types": "^2.1.18",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"pdf-text-extract": "^1.5.0",
"prettyjson": "^1.2.1",
"rimraf": "^2.6.2",
"watson-developer-cloud": "^3.4.2"
},
"devDependencies": {
"ajv": "^6.5.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-standard": "^3.1.0"
},
"scripts": {
"test": "exit 0",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.ibm.com/with-watson/doc-classifier.git"
},
"author": "",
"license": "Apache-2.0"
}