-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
35 lines (35 loc) · 1.28 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
{
"name": "indyscan-api-client",
"version": "4.6.1",
"author": "Patrik Staš",
"license": "ISC",
"description": "IndyScan HTTP API client.",
"main": "src/index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"build": "cross-env BABEL_ENV=production babel src --out-dir dist",
"istxs": "node ./script/istxs.js --url 'http://localhost:3000' --network SOVRIN_TESTNET -l domain -a 20 -b 30 -f [\\\"CLAIM_DEF\\\"]",
"istx": "node ./script/istx.js --url 'http://localhost:3000' --network SOVRIN_TESTNET -l domain -s 5",
"isseries": "node ./script/isseries.js --url 'http://localhost:3000' --network SOVRIN_TESTNET -l domain",
"test:integration": "ENVIRONMENT=localhost jest test/integration",
"test:integration:indyscanio": "ENVIRONMENT=indyscanio jest test/integration",
"demo": "node demo/get-many-txs.js",
"test:unit": "echo 'TODO: Implement unit tests.'"
},
"devDependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^5.0.5",
"cross-env": "^5.2.0",
"dotenv": "^7.0.0",
"standard": "^14.3.4",
"@types/jest": "^26.0.23",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"@elastic/elasticsearch": "^7.3.0"
},
"dependencies": {
"axios": "^0.21.1",
"query-string": "^6.4.2"
}
}