forked from smartcontractkit/ccip-read
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.99 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
69
70
{
"name": "@ensdomains/durin",
"version": "0.1.1",
"description": "A secure protocol for offchain data retrieval",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"start": "tsdx watch",
"build": "tsdx build",
"tsdx-test": "tsdx test",
"lint": "tsdx lint",
"prepare": "husky install && tsdx build",
"analyze": "size-limit --why",
"format": "prettier --write \"./src/*.{js,ts}\" \"tests/*.{js,ts}\"",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ensdomains/durin.js.git"
},
"author": "@ensdomains",
"module": "dist/durin.js.esm.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/ensdomains/durin/issues"
},
"peerDependencies": {},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"homepage": "https://github.com/ensdomains/durin#readme",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"mocha": "^9.0.0",
"prettier": "^2.3.2",
"supertest": "^6.1.4",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typedoc": "^0.21.2",
"typescript": "^4.3.3"
},
"dependencies": {
"cors": "^2.8.5",
"ethers": "^5.3.1",
"express": "^4.17.1",
"jayson": "^3.6.4"
}
}