-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "credential-extractor",
"version": "1.2.3",
"description": "Extracts data from installed browsers",
"main": "dist/index.js",
"files": [
"dist",
"ce.node"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TextsHQ/credential-extractor.git"
},
"binary": {
"module_name": "ce",
"host": "https://github.com/TextsHQ/credential-extractor/releases/download/",
"remote_path": "v{version}",
"module_path": ".",
"package_name": "credential-extractor-{platform}-{arch}-napi-v6.tar.gz",
"pkg_path": "."
},
"scripts": {
"build-rust": "cargo-cp-artifact -nc ce.node -- cargo build --message-format=json-render-diagnostics",
"build": "tsc && yarn build-rust --release",
"install": "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",
"cargo-cp-artifact": "^0.1",
"jest": "^27.0.4",
"node-pre-gyp-github": "https://github.com/rumblefrog/node-pre-gyp-github.git",
"typescript": "^4.3.2"
},
"dependencies": {
"node-pre-gyp": "^0.17.0"
}
}