-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "@0x/fast-abi",
"version": "0.0.8",
"description": "",
"main": "lib/index.js",
"author": "Jacob Evans <jacob@dekz.net>",
"license": "MIT",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"cargo-cp-artifact": "^0.1.7",
"uuid": "^8.3.2"
},
"scripts": {
"build": "yarn build:ts && yarn build:rs:release",
"build:ts": "tsc -b",
"build:rs": "cargo-cp-artifact -nc bin/index.node -- cargo build --message-format=json-render-diagnostics",
"build:rs:release": "yarn build:rs --release",
"install": "node-pre-gyp install --fallback-to-build=false || yarn build:rs:release",
"watch": "tsc -w -p tsconfig.json",
"package": "node-pre-gyp package",
"test": "jest",
"upload-binary": "yarn build && yarn node-pre-gyp package && yarn node-pre-gyp-github publish",
"prepack": "shx rm -rf bin"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@mathquis/node-pre-gyp-github": "1.0.1",
"@types/jest": "^29.4.0",
"@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",
"ethers": "^6.0.4",
"jest": "^29.4.3",
"mocha": "^6.2.0",
"shx": "^0.3.3",
"ts-jest": "^29.0.5",
"tslint": "5.11.0",
"typescript": "4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xProject/fast-abi.git"
},
"files": [
"lib",
"binding.gyp",
"build.rs",
"src",
"Cargo.toml",
"Cargo.lock"
],
"binary": {
"module_name": "index",
"host": "https://github.com/0xProject/fast-abi/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "bin",
"pkg_path": "."
}
}