Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.npmrc
.nycrc
asn1ts.code-workspace
rollup.config.mjs
tsconfig.json
yarn.lock
.mocharc.yaml
.gitignore
.eslintrc.json
test
src
.vscode
.github
node_modules
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@estos/asn1ts",
"version": "3.2.2",
"version": "3.2.3",
"license": "BSD-3-Clause",
"author": {
"name": "estos GmbH",
Expand Down Expand Up @@ -42,17 +42,17 @@
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
"typescript": "^5.2.2",
"jest": "^29.7.0",
"tslib": "^2.4.1"
},
"repository": {
"type": "git",
"url": "git://github.com/ESTOS/ASN1.ts.git"
},
"dependencies": {
"jest": "^29.7.0",
"pvtsutils": "^1.3.2",
"pvutils": "^1.1.3",
"tslib": "^2.4.1"
"pvutils": "^1.1.3"
},
"description": "ASN1.ts is a cross platform ASN1 library written in typescript. It supports encoding and (schema supported) decoding of ber encoded asn1 structures.",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import path from "path";
import fs from "fs";
import typescript from "rollup-plugin-typescript2";
import dts from "rollup-plugin-dts";
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };

const __dirname = path.resolve();
const LICENSE = fs.readFileSync("LICENSE", { encoding: "utf-8" });
Expand Down