-
Notifications
You must be signed in to change notification settings - Fork 779
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "url-to-pdf-api",
"version": "1.0.0",
"description": "Web page PDF rendering done right. Packaged to an easy API.",
"main": "src/index.js",
"engines": {
"node": "10.x.x"
},
"scripts": {
"start": "env-cmd nodemon --watch ./src -e js src/index.js",
"test": "mocha --timeout 10000 && npm run lint",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvarcarto/url-to-pdf-api.git"
},
"author": "Kimmo Brunfeldt",
"license": "MIT",
"bugs": {
"url": "https://github.com/alvarcarto/url-to-pdf-api/issues"
},
"homepage": "https://github.com/alvarcarto/url-to-pdf-api#readme",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"cors": "^2.8.4",
"express": "^4.15.5",
"express-validation": "^1.0.2",
"joi": "^11.1.1",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"normalize-url": "^5.0.0",
"pdf-parse": "^1.1.1",
"puppeteer": "^2.0.0",
"server-destroy": "^1.0.1",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^4.1.2",
"env-cmd": "^9.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"supertest": "^3.0.0"
}
}