-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 4.92 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"description": "Node wrapper for vcx",
"license": "Apache-2.0",
"typings": "dist/index.d.ts",
"directories": {
"test": "test",
"build": "dist",
"lib": "src"
},
"contributors": [
{
"name": "Hyperledger Indy Contributors",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/evernym/vcx/issues"
},
"standard": {
"env": [
"mocha"
]
},
"repository": {
"url": "git+https://github.com/evernym/vcx.git",
"type": "git"
},
"version": "0.8.0",
"dependencies": {
"@types/ffi": "0.0.19",
"@types/node": "^8.0.47",
"@types/ref": "0.0.28",
"@types/ref-struct": "0.0.28",
"ffi": "^2.2.0",
"fs-extra": "^4.0.2",
"lint": "^0.7.0",
"lodash": "^4.17.11",
"nvm": "0.0.4",
"ref": "^1.3.5",
"ref-struct": "^1.1.0",
"weak": "^1.0.1"
},
"scripts": {
"demo:notifyserver": "node notification-server.js",
"demo:alice": "node demo-single/alice.js",
"demo:faber": "node demo-single/faber.js",
"demo:alice:pg": "node demo-single/alice.js --postgresql",
"demo:faber:pg": "node demo-single/faber.js --postgresql",
"demo:alice:sign": "node demo-single/alice-signature.js",
"demo:faber:verify": "node demo-single/faber-verify-signature.js",
"compile": "./node_modules/.bin/tsc -p ./tsconfig.json",
"lint": "./node_modules/.bin/tslint --type-check -c ./tslint.json -p ./tsconfig.json && ./node_modules/.bin/tslint --type-check -c ./test/tslint.json -p ./test/tsconfig.json",
"jslint:fix": "standard --fix",
"lint:demo": "standard demo-single/*",
"doc-gen": "./node_modules/.bin/typedoc --out doc --excludePrivate --excludeProtected --ignoreCompilerErrors src",
"test": "export TS_NODE_PROJECT=\"./test/tsconfig.json\" export NODE_ENV='test' && export RUST_LOG=\"info\" && export RUST_BACKTRACE=full && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/connection.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/credential-def.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/credential.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/disclosed-proof.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/issuer-credential.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/proof.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/schema.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/utils.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite1/wallet.test.ts && ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register ./test/suite2/ffi.test.ts",
"test-logging": "export TS_NODE_PROJECT=\"./test/tsconfig.json\" export NODE_ENV='test'&& find ./test/suite3 -name '*.test.ts' -exec ./node_modules/.bin/mocha --timeout 10000 -gc --expose-gc --exit --recursive --use_strict --require ts-node/register \\{} \\;"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/lodash": "^4.14.109",
"@types/mocha": "^5.2.3",
"@types/sinon": "^5.0.1",
"@types/weak": "^1.0.0",
"app-module-path": "^2.2.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"chai": "^4.1.2",
"command-line-args": "^5.1.1",
"command-line-usage": "^5.0.5",
"express": "^4.17.1",
"form-data": "^3.0.0",
"fs": "0.0.1-security",
"ip": "^1.1.5",
"is-port-reachable": "^2.0.1",
"jsdoc": "^3.6.3",
"mocha": "^7.2.0",
"morgan": "^1.10.0",
"os": "^0.1.1",
"readline-sync": "^1.4.9",
"simple-statistics": "^7.1.0",
"sinon": "^4.1.2",
"sleep-promise": "^8.0.1",
"standard": "^14.3.1",
"ts-node": "^6.1.2",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.1.0",
"typedoc": "^0.15.4",
"typescript": "^3.0.0",
"winston": "^3.2.1"
},
"main": "dist/src/index.js",
"homepage": "https://github.com/evernym/vcx#readme",
"name": "node-vcx-wrapper"
}