forked from PeculiarVentures/ASN1.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"author": {
"email": "yury@strozhevsky.com",
"name": "Yury Strozhevsky"
},
"contributors": [
{
"email": "rmh@unmitigatedrisk.com",
"name": "Ryan Hurst"
}
],
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-cli": "latest",
"babel-preset-env": "latest",
"mocha": "^3.0.2",
"rollup": "latest",
"babel-plugin-istanbul": "^4.1.5",
"nyc": "^11.6.0",
"cross-env": "^5.1.4",
"rollup-plugin-node-resolve": "^1.7.1",
"asn1-test-suite": "latest"
},
"repository": {
"type": "git",
"url": "git://github.com/PeculiarVentures/asn1.js.git"
},
"dependencies": {
"pvutils": "latest"
},
"description": "asn1js is a pure JavaScript library implementing this standard. ASN.1 is the basis of all X.509 related data structures and numerous other protocols used on the web",
"keywords": [
"asn1",
"parser",
"asn.1",
"ber",
"der",
"sequence",
"set",
"bitstring",
"octetstring",
"utctime",
"utf8string",
"bmpstring",
"universalstring",
"generalizedtime"
],
"jsnext:main": "./src/asn1.js",
"main": "./build/asn1.js",
"name": "asn1js",
"scripts": {
"build": "babel src --compact=false --out-dir build --source-maps",
"watch": "babel src --compact=false --out-dir build --source-maps --watch",
"ex1": "cd examples/ASN1Usage && npm run build && cd ../..",
"build:examples": "npm run ex1",
"build:tests": "npm run build:examples",
"test": "cross-env NODE_ENV=test nyc mocha --require babel-register",
"prepublishOnly": "npm run build"
},
"version": "2.0.22",
"license": "MIT"
}