-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.76 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
{
"author": "Richard Moore <[email protected]>",
"dependencies": {
"@okexchain/amino-js": "^0.1.3",
"ethers": "^5.5.1"
},
"description": "An ethers-compatible provider for OKExChain.",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"mocha": "^9.1.3",
"reticulate": "^0.0.6",
"rollup": "^2.52.7",
"@rollup/plugin-node-resolve": "13.0.4",
"rollup-plugin-terser": "^7.0.2",
"@rollup/plugin-commonjs": "^20.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"typescript": "^4.3.5"
},
"jsnext:main": "./lib.esnext/index.js",
"keywords": [
"okexchain",
"exchain",
"ethers"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib.esm/index.js",
"name": "@ethers-ancillary/exchain",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/ethers-io/ancillary-exchain.git"
},
"scripts": {
"auto-build": "npm run build -- -w",
"build": "tsc --build ./tsconfig.json",
"build-all": "npm run dump-version && npm run build-cjs && npm run build-esnext && npm run build-esm && npm run dist",
"build-cjs": "tsc -p tsconfig.json --outDir lib -t es3 -m commonjs",
"build-esnext": "tsc -p tsconfig.json --outDir lib.esnext -t es2015 -m commonjs",
"build-esm": "tsc -p tsconfig.json --outDir lib.esm -t es2015 -m es2015",
"clean": "rm -rf package-lock.json lib/ lib.esm/ lib.esnext/",
"dist": "rollup -c rollup.config.js",
"dump-version": "node -p 'const p = JSON.parse(fs.readFileSync(\"package.json\")); (`export const version = \"${ p.name }@${ p.version}\";`)' > ./src.ts/_version.ts",
"test": "npx mocha lib/*.tests.js"
},
"sideEffects": false,
"types": "./lib/index.d.ts",
"version": "0.0.3"
}