-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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": "node-pdftk",
"version": "2.1.3",
"description": "A wrapper for pdftk with streams and promises.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jjwilly16/node-pdftk.git"
},
"bugs": {
"url": "https://github.com/jjwilly16/node-pdftk/issues"
},
"scripts": {
"pretest": "npm run clean && node pretest",
"test": "mocha test/*.spec.js",
"posttest": "npm run clean",
"coverage": "nyc --reporter=html --reporter=text npm run test",
"docs": "jsdoc -c conf.json",
"clean": "rimraf test/files/*.temp.*",
"bump-patch": "npm version patch && git push origin master && git push origin --tags",
"bump-minor": "npm version minor && git push origin master && git push origin --tags",
"bump-major": "npm version major && git push origin master && git push origin --tags"
},
"keywords": [
"pdftk",
"pdf",
"fill",
"form",
"stream",
"promise"
],
"author": "Justin Williamson <[email protected]>",
"license": "MIT",
"nyc": {
"include": [
"index.js"
]
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.13.0",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"mocha-eslint": "^4.1.0",
"nyc": "^11.8.0",
"rimraf": "^2.6.2"
}
}