forked from vbuch/node-signpdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.81 KB
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
{
"name": "node-signpdf",
"version": "0.1.0",
"description": "Simple signing of PDFs in node.",
"repository": {
"type": "git",
"url": "https://github.com/vbuch/node-signpdf"
},
"license": "MIT",
"keywords": [
"sign",
"pdf",
"node",
"nodejs",
"esign",
"adobe",
"ppklite",
"sign detached",
"pkcs7",
"pkcs#7",
"digital signature"
],
"main": "dist/signpdf.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"test:coverage": "./node_modules/.bin/jest --coverage",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"build": "./node_modules/.bin/babel ./src -d ./dist --ignore *.spec.js,*.test.js,__mocks__",
"build:watch": "./node_modules/.bin/babel --watch ./src -d ./dist --ignore *.spec.js,*.test.js,__mocks__",
"precommit": "npm run lint",
"prepush": "npm run test"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
},
"dependencies": {
"node-forge": "^0.7.6"
},
"devDependencies": {
"assertion-error": "^1.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.20.2",
"jest": "^23.1.0",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"pdfkit": "^0.8.3"
}
}