-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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": "@danzipie/mrtd-ts",
"version": "1.0.1",
"private": false,
"main": "src/sod.ts",
"license": "MIT",
"scripts": {
"prebuild": "yarn clear && tslint -c tslint.json -p tsconfig.json --fix",
"postbuild": "yarn test",
"prestart": "yarn build",
"start": "node .",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"dev": "tsc",
"postdev": "node dist/index.js",
"clear": "rm -r dist/* || true"
},
"dependencies": {
"@peculiar/asn1-cms": "^2.3.8",
"@peculiar/asn1-rsa": "^2.3.8",
"@peculiar/asn1-schema": "^2.3.8",
"@peculiar/asn1-x509": "^2.3.8"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/express": "^4.17.2",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.7.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"description": "Machine Readable Travel Document (MRTD) library for TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/danzipie/mrtd-ts.git"
},
"keywords": [
"mrtd"
],
"author": "danzipie",
"bugs": {
"url": "https://github.com/danzipie/mrtd-ts/issues"
},
"homepage": "https://github.com/danzipie/mrtd-ts#readme"
}