summaryrefslogtreecommitdiffstats
path: root/comm/third_party/asn1js/package.json
blob: d0720330c1ce391ece486c1f96660377d7f093bd (plain)
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
{
  "author": {
    "email": "yury@strozhevsky.com",
    "name": "Yury Strozhevsky"
  },
  "contributors": [
    {
      "email": "rmh@unmitigatedrisk.com",
      "name": "Ryan Hurst"
    }
  ],
  "engines": {
    "node": ">=12.0.0"
  },
  "devDependencies": {
    "@types/mocha": "^9.1.1",
    "@types/node": "^17.0.32",
    "@typescript-eslint/eslint-plugin": "^5.23.0",
    "@typescript-eslint/parser": "^5.23.0",
    "asn1-test-suite": "^1.0.2",
    "eslint": "^8.15.0",
    "eslint-plugin-deprecation": "^1.3.2",
    "mocha": "^10.0.0",
    "nyc": "^15.1.0",
    "rollup": "^2.72.1",
    "rollup-plugin-dts": "^4.2.1",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-typescript2": "^0.31.2",
    "ts-node": "^10.7.0",
    "typescript": "^4.6.4"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/PeculiarVentures/asn1.js.git"
  },
  "dependencies": {
    "pvtsutils": "^1.3.2",
    "pvutils": "^1.1.3",
    "tslib": "^2.4.0"
  },
  "description": "asn1js is a pure JavaScript library implementing this standard. ASN.1 is the basis of all X.509 related data structures and numerous other protocols used on the web",
  "keywords": [
    "asn1",
    "parser",
    "asn.1",
    "ber",
    "der",
    "sequence",
    "set",
    "bitstring",
    "octetstring",
    "utctime",
    "utf8string",
    "bmpstring",
    "universalstring",
    "generalizedtime"
  ],
  "main": "build/index.js",
  "module": "build/index.es.js",
  "types": "build/index.d.ts",
  "name": "asn1js",
  "files": [
    "build",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "rollup -c",
    "test": "mocha",
    "prepublishOnly": "npm run build",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint --fix . --ext .ts",
    "coverage": "nyc npm test"
  },
  "version": "3.0.5",
  "license": "BSD-3-Clause"
}