-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "@chromapdx/signet",
"version": "0.4.6",
"description": "A specification for open provenance; a suite of tools for best practice.",
"author": "Leif Shackelford <[email protected]>",
"license": "MIT",
"private": false,
"main": "index.js",
"types": "esm/index.d.ts",
"scripts": {
"build": "rm -Rf esm && rm -f tsconfig.tsbuildinfo && rollup --config rollup.config.js && tsc",
"test": "NODE_ENV=test mocha --require @babel/register \"test/**/*.js\" --bail",
"cover": "NODE_ENV=test nyc --report-dir coverage npm t",
"travis": "npm run build && npm run cover"
},
"dependencies": {
"@ipld/dag-pb": "^2.1.16"
},
"devDependencies": {
"@ipld/dag-cbor": "^7.0.1",
"@zilliqa-js/crypto": "^3.3.4",
"cbor": "^8.1",
"bs58": "3.1.0",
"js-sha3": "^0.8.0",
"multicodec": "^3.2.1",
"protobufjs": "^6.11.2",
"multiformats": "^9.6.4",
"typed-json-transform": "^0.26.6",
"varint": "^6.0",
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0-13",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@stablelib/hmac-drbg": "^1.0",
"@types/cbor": "^6.0",
"@types/chai": "^4.2",
"@types/ecurve": "^1.0",
"@types/mocha": "^7",
"@types/node": "^10",
"@types/varint": "^5.0",
"babel-plugin-istanbul": "^6.1.1",
"bip-schnorr": "^0.6.6",
"chai": "^4.3",
"coveralls": "^3.1.1",
"mocha": "^9.2.2",
"nyc": "^15.1",
"rollup": "^2.70",
"tslib": "^2.3.1",
"typescript": "^4.6.0"
},
"unusedDependencies": {},
"nyc": {
"extends": "@istanbuljs/nyc-config-babel",
"reporter": [
"json",
"html",
"lcov"
]
}
}