-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.48 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
{
"name": "rust-fetch",
"version": "0.7.6",
"description": "Rust HTTP wrapper for JS",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TextsHQ/rust-fetch.git"
},
"binary": {
"module_name": "rf",
"host": "https://github.com/TextsHQ/rust-fetch/releases/download/",
"remote_path": "v{version}",
"module_path": ".",
"package_name": "rust-fetch-{platform}-{arch}-napi-v6.tar.gz",
"pkg_path": "."
},
"scripts": {
"build-rust": "cargo-cp-artifact -nc rf.node -- cargo build --message-format=json-render-diagnostics",
"build": "tsc && yarn build-rust --release",
"install": "concurrently \"npggha\" \"HTTP_PROXY=http://localhost:9191 node-pre-gyp install --fallback-to-build=false\"",
"package": "node-pre-gyp package",
"upload-binary": "node-pre-gyp-github publish",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/tough-cookie": "^4.0.0",
"cargo-cp-artifact": "^0.1",
"concurrently": "^6.4.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"jest": "^27.0.4",
"node-pre-gyp-github": "https://github.com/rumblefrog/node-pre-gyp-github.git",
"npggha": "https://github.com/rumblefrog/npggha",
"tough-cookie": "^4.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"node-pre-gyp": "^0.17.0"
}
}