-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "@hyperledger/indy-vdr-nodejs",
"version": "0.1.0-dev.13",
"license": "Apache-2.0",
"description": "Nodejs wrapper for Indy Vdr",
"source": "src/index",
"main": "build/index",
"homepage": "https://github.com/hyperledger/indy-vdr/tree/main/wrappers/javascript/indy-vdr-nodejs",
"author": "Hyperledger (https://github.com/hyperledger)",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/indy-vdr",
"directory": "wrappers/javascript/indy-vdr-nodejs"
},
"publishConfig": {
"access": "public"
},
"files": [
"build",
"scripts"
],
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rimraf -rf ./build",
"compile": "tsc -p tsconfig.build.json",
"test": "jest",
"install": "node-pre-gyp install --target_arch=$(node scripts/arch.js)"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@types/ffi-napi": "^4.0.5",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.26",
"@types/ref-array-di": "^1.2.3",
"@types/ref-struct-di": "^1.1.6",
"babel-plugin-module-resolver": "^4.0.0",
"jest": "^28.0.2",
"prettier": "2.6.2",
"ts-node": "^10.7.0",
"typescript": "~4.9.4"
},
"dependencies": {
"@hyperledger/indy-vdr-shared": "0.1.0-dev.13",
"@mapbox/node-pre-gyp": "^1.0.10",
"@types/ref-array-di": "^1.2.5",
"ffi-napi": "^4.0.3",
"ref-array-di": "^1.2.2",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1"
},
"binary": {
"module_name": "indy_vdr",
"module_path": "native",
"remote_path": "v0.4.0-dev.13",
"host": "https://github.com/hyperledger/indy-vdr/releases/download/",
"package_name": "library-{platform}-{arch}.tar.gz"
}
}