-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "@zoltu/ethereum-fetch-json-rpc",
"description": "A strongly typed Ethereum library that facilitates talking to an Ethereum JSON-RPC node via the whatwg Fetch API.",
"repository": {
"url": "https://github.com/Zoltu/ethereum-fetch-json-rpc"
},
"license": "Unlicense",
"main": "./output-cjs/index.js",
"exports": {
"import": "./output-esm/index.js",
"require": "./output-cjs/index.js"
},
"devDependencies": {
"@types/chai": "4.2.15",
"@zoltu/file-copier": "2.2.1",
"@zoltu/rlp-encoder": "2.0.3",
"@zoltu/typescript-transformer-append-js-extension": "1.0.1",
"chai": "4.3.4",
"chai-bytes": "0.1.2",
"recursive-fs": "2.1.0",
"ts-node": "9.1.1",
"ttypescript": "1.5.12",
"typescript": "4.2.3"
},
"dependencies": {
"@zoltu/ethereum-types": "9.0.4"
},
"scripts": {
"copy-dependencies": "recursive-copy \"node_modules/@zoltu/rlp-encoder/source\" \"source/vendor/rlp-encoder\"",
"prepare": "npm run copy-dependencies",
"build": "ttsc --project tsconfig-esm.json && tsc --project tsconfig-cjs.json",
"test": "ts-node --project tsconfig-tests.json source/index.tests.ts"
},
"files": [
"/output-esm/",
"/output-cjs/",
"/source/",
"README.md",
"LICENSE"
]
}