-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.96 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
{
"bugs": {
"email": "jonathan@wilbur.space",
"url": "https://github.com/JonathanWilbur/asn1-ts/issues"
},
"contributors": [
{
"email": "jonathan@wilbur.space",
"name": "Jonathan M. Wilbur",
"url": "https://jonathan.wilbur.space/"
}
],
"description": "ASN.1 encoding and decoding, including BER, CER, and DER.",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"jest": "^29.3.1",
"jest-junit": "^15.0.0",
"npm-check-updates": "^16.6.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"directories": {
"doc": "documentation",
"test": "test"
},
"files": [
"dist/node/**/*"
],
"homepage": "https://github.com/JonathanWilbur/asn1-ts",
"keywords": [
"ASN1",
"ASN.1",
"BER",
"CER",
"DER"
],
"license": "MIT",
"main": "./dist/node/index.js",
"name": "asn1-ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/JonathanWilbur/asn1-ts.git"
},
"scripts": {
"benchmark": "node ./test/benchmark.js",
"breaking-update": "npx ncu -u && npm install",
"build": "npx tsc",
"clean": "rm -rf dist; mkdir -p dist",
"line-count": "npx sloc source",
"test": "npx jest --ci --reporters=default --reporters=jest-junit --coverage"
},
"types": "./dist/node/index.d.ts",
"version": "8.0.2",
"dependencies": {
"tslib": "^2.4.1"
}
}