forked from monetha/js-verifiable-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.85 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
{
"name": "verifiable-data",
"version": "2.6.4",
"description": "SDK for managing verifiable data using digital identities on distributed ledger",
"main": "./dist/lib/proto.js",
"types": "./dist/lib/proto.d.ts",
"license": "GPL-3.0",
"engines": {
"npm": ">=5",
"node": ">=8.9.0"
},
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:integration": "cd integration-tests && npm run test",
"test:unit": "./node_modules/.bin/mocha --require ts-node/register lib/**/*.test.ts",
"build": "npm run build:clean && npm run build:ts",
"build:clean": "node ./scripts/clean-dist.js",
"build:ts": "./node_modules/.bin/tsc && tscpaths -p tsconfig.json -s ./lib -o ./dist/lib && node ./scripts/copy-typings.js",
"lint": "tslint --project tsconfig.json",
"prepare-contracts": "typechain --target=web3-1.0.0 --outDir=lib/types/web3-contracts \"./config/*.json\""
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist"
}
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/ethereumjs-tx": "^1.0.1",
"@types/ethereumjs-util": "^5.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^10.12.2",
"chai": "^4.2.0",
"husky": "1.3.1",
"mocha": "^6.1.4",
"shelljs": "^0.8.3",
"ts-node": "^8.2.0",
"tscpaths": "0.0.9",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-lines-between-class-members": "^1.3.1",
"typechain": "^0.3.14",
"typescript": "^3.5.1"
},
"dependencies": {
"abi-decoder": "^1.2.0",
"aes-js": "^3.1.2",
"bn.js": "^4.11.8",
"elliptic": "^6.4.1",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-wallet": "^0.6.0",
"form-data": "^2.3.3",
"hash.js": "^1.1.7",
"keccak256": "^1.0.0",
"secure-random": "^1.1.2",
"web3": "1.0.0-beta.55"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monetha/reputation-js-sdk.git"
},
"author": "Monetha"
}