-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "hummus-recipe",
"version": "2.0.1",
"description": "A powerful PDF tool for NodeJS based on HummusJS",
"author": "John Huang <[email protected]>",
"license": "MIT",
"main": "index.js",
"engine": [
"node >= v6.9.0"
],
"keywords": [
"pdf",
"pdfhummus",
"hummus"
],
"scripts": {
"lint": "eslint lib tests --fix",
"jsdoc": "./node_modules/.bin/jsdoc -c conf.json",
"deploy:docs": "aws s3 cp docs/ s3://hummus-recipe/docs --recursive --profile goldax --acl public-read",
"test": "mocha ./tests/*.js --timeout 300000",
"test-c": "nodemon --exec \"npm test || true\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/chunyenHuang/hummusRecipe.git"
},
"bugs": {
"url": "https://github.com/chunyenHuang/hummusRecipe/issues"
},
"types": "./index.d.ts",
"homepage": "https://github.com/chunyenHuang/hummusRecipe#readme",
"dependencies": {
"linebreak": "^0.3.0",
"memory-streams": "^0.1.3",
"muhammara": "^2.1.0",
"static-eval": "^2.0.5",
"static-module": "^3.0.3",
"xmldom": "^0.1.31"
},
"devDependencies": {
"all-contributors-cli": "^6.14.2",
"chai": "^4.2.0",
"docdash": "^0.4.0",
"fs-extra": "^4.0.3",
"jsdoc": "^3.6.4",
"mocha": "^3.5.3"
}
}