-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "render-vendor",
"version": "0.2.0",
"description": "The fastest way to render HTML documents to PDFs",
"engines": {
"node": ">=4.0.0"
},
"bin": {
"render-vendor": "./bin/render-vendor"
},
"main": "renderer.js",
"scripts": {
"build": "babel src -d .",
"lint": "./node_modules/.bin/eslint src",
"prepublish": "npm run build",
"test": "./node_modules/.bin/_mocha --compilers js:babel-register tests/*-test.js tests/**/*-test.js -t 5s"
},
"author": {
"name": "Aidan Nulman",
"email": "aidan@isleofcode.com",
"url": "https://isleofcode.com"
},
"contributors": [
{
"name": "Alex Blom",
"email": "alex@isleofcode.com"
}
],
"license": "LGPL-3.0",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"eslint": "^4.4.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.0",
"mocha-eslint": "^4.1.0",
"testdouble": "^3.2.3"
},
"dependencies": {
"babel-runtime": "^6.25.0",
"commander": "^2.11.0",
"listr": "^0.12.0",
"lodash": "^4.17.4",
"phantomjs-prebuilt": "^2.1.14",
"puppeteer": "^0.12.0",
"request": "^2.81.0",
"rsvp": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/isleofcode/render-vendor.git"
},
"keywords": [
"html",
"pdf",
"png",
"jpeg",
"bmp",
"phantom",
"phantomjs",
"nodejs"
],
"bugs": {
"url": "https://github.com/isleofcode/render-vendor/issues"
},
"homepage": "https://github.com/isleofcode/render-vendor"
}