-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "firma-gob",
"version": "2.1.0",
"description": "Firma documentos con plataforma Firma.Gob del gobierno Chile",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"release": "dotenv release-it"
},
"author": "Guillermo Parraguez",
"license": "MIT",
"dependencies": {
"node-fetch": "2.6.7",
"node-signpdf": "git+https://github.com/gepd/node-signpdf#develop",
"pdf-lib-incremental-save": "^1.17.4"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@types/node-fetch": "^2.6.2",
"dotenv-cli": "^7.4.1",
"release-it": "^19.0.3"
},
"keywords": [
"firma",
"digital",
"chile",
"gobierno"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gepd/FirmaGob.git"
},
"bugs": {
"url": "https://github.com/gepd/FirmaGob/issues"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"homepage": "https://github.com/gepd/FirmaGob#readme",
"release-it": {
"github": {
"release": true
},
"git": {
"changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}"
}
}
}