forked from 0xProject/fast-abi
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "@uniswap/fast-abi",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.4",
"ethers": "^5.4.0",
"neon-cli": "^0.8.0",
"uuid": "^8.3.2"
},
"scripts": {
"build": "tsc -b && neon build --release && mv ./native/index.node build-native/index.node",
"build:ts": "tsc -b",
"build:rs": "neon build",
"watch": "tsc -w -p tsconfig.json",
"install": "node-pre-gyp install --fallback-to-build=false || neon build --release",
"package": "./package-binaries.sh",
"upload-binary": "node-pre-gyp package && node-pre-gyp-github publish"
},
"devDependencies": {
"@mathquis/node-pre-gyp-github": "1.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "12.12.54",
"chai": "^4.0.1",
"chai-as-promised": "^7.1.0",
"chai-bignumber": "^3.0.0",
"ethereum-types": "^3.4.1",
"mocha": "^6.2.0",
"tslint": "5.11.0",
"typescript": "4.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Uniswap/fast-abi.git"
},
"files": [
"lib"
],
"binary": {
"module_name": "index",
"host": "https://github.com/Uniswap/fast-abi/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./build-native",
"pkg_path": "."
}
}