-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 KB
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
71
72
{
"name": "@chainlink/ccip-read-server",
"version": "0.2.1",
"description": "Server framework for ccip-read, a secure protocol for offchain data retrieval",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typedocMain": "src/index.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"analyze": "size-limit --why",
"format": "prettier --write \"./src/*.{js,ts}\" \"tests/*.{js,ts}\"",
"clean": "rm -fr dist node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartcontractkit/ccip-read.js.git"
},
"author": "@ensdomains",
"module": "dist/ccip-read.js.esm.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartcontractkit/ccip-read/issues"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"homepage": "https://github.com/smartcontractkit/ccip-read#readme",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@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",
"chai-as-promised": "^7.1.1",
"eslint-plugin-prettier": "^3.4.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",
"typescript": "^4.3.3"
},
"dependencies": {
"cors": "^2.8.5",
"ethers": "^5.3.1",
"express": "^4.17.1"
},
"resolutions": {
"@types/express-serve-static-core": "4.17.20",
"@types/express": "4.17.2"
}
}