1{
2 "name": "@lapo/asn1js",
3 "version": "1.0.2",
4 "description": "Generic ASN.1 parser/decoder that can decode any valid ASN.1 DER or BER structures.",
5 "main": "asn1.js",
6 "repository": {
7 "type": "git",
8 "url": "git+https://github.com/lapo-luchini/asn1js.git"
9 },
10 "keywords": [ "asn1", "ber", "der", "pem" ],
11 "author": "Lapo Luchini <lapo@lapo.it>",
12 "license": "ISC",
13 "bugs": { "url": "https://github.com/lapo-luchini/asn1js/issues" },
14 "homepage": "https://lapo.it/asn1js/",
15 "files": [ "asn1.js", "base64.js", "hex.js", "int10.js", "oids.js" ],
16 "eslintConfig": {
17 "env": {
18 "browser": true,
19 "node": true
20 },
21 "extends": [ "eslint:recommended" ],
22 "rules": {
23 "strict": [ "error", "function" ],
24 "indent": [ "error", 4, { "outerIIFEBody": 0 } ],
25 "linebreak-style": [ "error", "unix" ],
26 "semi": [ "warn", "always" ],
27 "comma-dangle": [ "error", "never" ]
28 },
29 "overrides": [
30 {
31 "files": [ "index.js", "test.js" ],
32 "rules": {
33 "strict": [ "error", "global" ]
34 }
35 }
36 ]
37 }
38}