-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 961 Bytes
/
package.json
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
{
"name": "@root/asn1",
"version": "1.0.2",
"description": "VanillaJS, Lightweight, Zero-Dependency, ASN.1 encoder and decoder.",
"main": "index.js",
"files": [
"*.js",
"*.d.ts",
"dist"
],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"build": "sh ./build.sh",
"fmt": "npm run basetag-rebase && npm run prettier",
"test": "node ./tests/",
"--------": "--------------------------------------------------------------------------",
"prettier": "npx -p prettier@2 -- prettier --write '**/*.{md,js,jsx,json,css,html,vue}'"
},
"repository": {
"type": "git",
"url": "https://github.com/therootcompany/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",
"@types/root__asn1": "^1.0.0"
}
}