-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 2.72 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "tl-create",
"version": "1.5.0",
"main": "build/cjs/index.js",
"module": "build/mjs/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"test": "mocha",
"clear": "rimraf build",
"build": "npm run build:cjs && npm run build:mjs && npm run build:types",
"build:cjs": "tsc -p tsconfig.json --module commonjs --removeComments --outDir build/cjs",
"build:mjs": "tsc -p tsconfig.json --module es2015 --removeComments --outDir build/mjs",
"prebuild:types": "rimraf build/types",
"build:types": "tsc -p tsconfig.json --outDir build/types --declaration --emitDeclarationOnly",
"rebuild": "npm run clear && npm run build",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"prepare": "npm run build",
"prepub": "npm run rebuild",
"pub": "npm version patch && npm publish",
"postpub": "git push && git push --tags origin master",
"prepub:next": "npm run rebuild",
"pub:next": "npm version prerelease --preid=next && npm publish --tag next",
"postpub:next": "git push"
},
"bin": {
"tl-create": "build/cjs/bin/index.js"
},
"author": "Asif ur rahman",
"license": "MIT",
"dependencies": {
"@peculiar/webcrypto": "^1.1.6",
"@types/pdfjs-dist": "^2.1.4",
"asn1js": "^2.1.1",
"cheerio": "^0.22.0",
"commander": "^4.1.1",
"pdfjs-dist": "^2.15.349",
"pkijs": "^2.1.93",
"pvutils": "^1.0.17",
"sync-request": "^6.1.0",
"temp": "^0.9.4",
"tslib": "^2.1.0",
"xadesjs": "^2.1.1",
"xml-core": "^1.1.2",
"xmldom": "^0.5.0",
"xmldom-alpha": "^0.1.28",
"xmldsigjs": "^2.1.3"
},
"devDependencies": {
"@types/asn1js": "^2.0.0",
"@types/cheerio": "^0.22.28",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.35",
"@types/pkijs": "^0.0.6",
"@types/pvutils": "^1.0.0",
"@types/temp": "^0.8.34",
"@types/xmldom": "^0.1.30",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/tl-create.git"
},
"bugs": {
"url": "https://github.com/PeculiarVentures/tl-create/issues"
},
"homepage": "https://github.com/PeculiarVentures/tl-create#readme",
"description": "Node command line tool to create a X.509 trust list from various trust stores",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"html"
]
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"timeout": 15000,
"spec": [
"test/**/*.ts"
]
}
}