-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "@provenance/proof-points",
"version": "7.4.0",
"description": "Library for working with Provenance Proof Points",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "waffle",
"compile-typescript": "tsc --resolveJsonModule",
"compile-solidity": "waffle compile",
"lint-typescript": "eslint **/*.ts",
"test": "export NODE_ENV=test && mocha -r ts-node/register/transpile-only --timeout 50000 --no-warnings test/**/*.test.ts"
},
"prePublish": "tsc --resolveJsonModule",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectProvenance/ProofPoints.git"
},
"author": "Provenance",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ProjectProvenance/ProofPoints/issues"
},
"homepage": "https://github.com/ProjectProvenance/ProofPoints#readme",
"dependencies": {
"bignumber.js": "^9.0.0",
"canonicalize": "^1.0.1",
"ethers": "^5.7.2",
"isomorphic-fetch": "^3.0.0",
"local-iso-dt": "^3.1.0",
"multibase": "^4.0.4",
"multihashes": "^4.0.2",
"multihashing": "^0.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/isomorphic-fetch": "0.0.35",
"@types/mocha": "^8.2.2",
"@types/multibase": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"chai": "^4.3.4",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"ethereum-waffle": "^4",
"mocha": "^9.0.0",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}