-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.98 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
{
"name": "alastria-identity-lib",
"version": "2.4.1",
"description": "A library to interact with alastria-identity smart contracts",
"main": "src/index.js",
"bin": {
"alastria-identity-lib": "src/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "run-s build",
"compile": "git clone https://github.com/alastria/alastriaID-hardhat-contracts.git && npm install --prefix alastriaID-hardhat-contracts && npm run compile --prefix alastriaID-hardhat-contracts && node src/configFile.js && tsc",
"clean": "rimraf dist alastriaID-hardhat-contracts",
"build": "run-s clean compile",
"test": "mocha -r ts-node/register test/**/*.ts",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint-fix": "eslint 'src/**/*.{js,ts,tsx}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alastria/alastria-identity-lib.git"
},
"keywords": [
"alastria",
"identity",
"self-sovereign-identity",
"ssi",
"blockchain",
"quorum"
],
"author": "Alastria",
"license": "MIT",
"bugs": {
"url": "https://github.com/alastria/alastria-identity-lib/issues"
},
"homepage": "https://github.com/alastria/alastria-identity-lib#readme",
"dependencies": {
"@types/node": "14.14.25",
"chai-as-promised": "7.1.1",
"ethereumjs-tx": "1.3.3",
"jsontokens": "3.0.0",
"keythereum": "1.2.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"typescript": "4.1.4",
"web3": "1.6"
},
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.2.1",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"chai": "4.3.0",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"mocha": "9.2.1",
"sinon": "9.2.4",
"ts-node": "9.1.1"
}
}