chore: update package info, use ./ prefixes for files

This commit is contained in:
AJ ONeal 2024-08-28 21:05:46 -06:00
parent 976cb2682c
commit 8a01d683df
Signed by: coolaj86
GPG Key ID: F1D692A76F70CF98
2 changed files with 36 additions and 5 deletions

32
package-lock.json generated Normal file
View File

@ -0,0 +1,32 @@
{
"name": "@root/asn1",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@root/asn1",
"version": "1.0.0",
"license": "MPL-2.0",
"dependencies": {
"@root/encoding": "^1.0.1"
},
"devDependencies": {
"@root/pem": "^1.0.4"
}
},
"node_modules/@root/encoding": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@root/encoding/-/encoding-1.0.1.tgz",
"integrity": "sha512-OaEub02ufoU038gy6bsNHQOjIn8nUjGiLcaRmJ40IUykneJkIW5fxDqKxQx48cszuNflYldsJLPPXCrGfHs8yQ==",
"license": "MPL-2.0"
},
"node_modules/@root/pem": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@root/pem/-/pem-1.0.4.tgz",
"integrity": "sha512-rEUDiUsHtild8GfIjFE9wXtcVxeS+ehCJQBwbQQ3IVfORKHK93CFnRtkr69R75lZFjcmKYVc+AXDB+AeRFOULA==",
"dev": true,
"license": "MPL-2.0"
}
}
}

View File

@ -13,9 +13,9 @@
"dist"
],
"scripts": {
"build": "bash build.sh",
"build": "sh ./build.sh",
"fmt": "npm run basetag-rebase && npm run prettier",
"test": "node tests",
"test": "node ./tests/",
"--------": "--------------------------------------------------------------------------",
"prettier": "npx -p prettier@2 -- prettier --write '**/*.{md,js,jsx,json,css,html,vue}'"
},
@ -29,11 +29,10 @@
"x509",
"PEM"
],
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"author": "AJ ONeal <aj@therootcompany.com> (https://therootcompany.com/)",
"license": "MPL-2.0",
"devDependencies": {
"@root/pem": "^1.0.4",
"uglify-js": "^3.10.0"
"@root/pem": "^1.0.4"
},
"dependencies": {
"@root/encoding": "^1.0.1"