-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.25 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
65
66
67
68
{
"name": "ctjs",
"version": "1.0.5",
"description": "CTjs is a full set of classes necessary to work with any kind of Certificate Transparency log (V1 as from RFC6962, or V2 as from RFC6962-bis). In CTjs you could find all necessary validation/verification functions for all related data shipped with full-featured examples showning how to validate/verify. Also in scope of CTjs I made code showing example from RFC6962 item 2.1.3 on a real data from real Certificate Transparency log",
"repository": {
"type": "git",
"url": "https://github.com/YuryStrozhevsky/CTjs.git"
},
"devDependencies": {
"babel-cli": "latest",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "latest",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"mocha": "^3.0.2",
"node-fetch": "^2.1.2",
"nyc": "^11.6.0",
"rollup": "latest",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-builtins": "latest",
"rollup-plugin-node-resolve": "^1.7.1",
"node-webcrypto-ossl": "^1.0.37",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"urlencode": "^1.1.0"
},
"dependencies": {
"asn1js": "latest",
"bytestreamjs": "latest",
"pkijs": "latest",
"pvutils": "latest"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "babel src --compact=false --out-dir build --source-maps",
"test": "cross-env NODE_ENV=test nyc mocha --timeout 0 --require babel-register test/functional-tests.js",
"rfc6962-example": "mocha --timeout 0 --require babel-register examples/rfc6962-example/rfc6962-example.js",
"ct-monitor-auditor-example": "mocha --timeout 0 --require babel-register examples/ct-monitor-auditor-example/ct-monitor-auditor-example.js",
"build:docs": "esdoc",
"prepublishOnly": "npm run build"
},
"esdoc": {
"source": "./src",
"destination": "./docs",
"plugins": [
{
"name":
"esdoc-standard-plugin"
}
]
},
"jsnext:main": "./src/index.js",
"module": "./src/index.js",
"main": "./build/index.js",
"keywords": [
"certificate-transparency",
"certificate",
"transparency",
"rfc6962",
"rfc6962-bis",
"merkle",
"merkle-tree"
],
"author": "Yury Strozhevsky (yury@strozhevsky.com)",
"license": "MIT"
}