asn1.js/package.json

41 lines
941 B
JSON
Raw Normal View History

{
"name": "@root/asn1",
"version": "1.0.0",
"description": "VanillaJS, Lightweight, Zero-Dependency, ASN.1 encoder and decoder.",
"main": "index.js",
"browser": {
"./node/native.js": "./browser/native.js"
},
"files": [
"*.js",
"node",
"browser",
"dist"
],
"scripts": {
"build": "sh ./build.sh",
2024-08-28 21:31:18 -06:00
"fmt": "npm run basetag-rebase && npm run prettier",
"test": "node ./tests/",
2024-08-28 21:31:18 -06:00
"--------": "--------------------------------------------------------------------------",
"prettier": "npx -p prettier@2 -- prettier --write '**/*.{md,js,jsx,json,css,html,vue}'"
},
"repository": {
"type": "git",
"url": "https://git.rootprojects.org/root/asn1.js.git"
},
"keywords": [
"ASN.1",
"asn1",
"x509",
"PEM"
],
"author": "AJ ONeal <aj@therootcompany.com> (https://therootcompany.com/)",
"license": "MPL-2.0",
"devDependencies": {
"@root/pem": "^1.0.4"
},
"dependencies": {
"@root/encoding": "^1.0.1"
}
}