forked from ruzyysmartt/Authereum-contracts-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.5 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.5 KB
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
{
"name": "@authereum/contracts",
"version": "0.0.2-beta.45",
"description": "Ethereum smart contract for Authereum",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"clean": "rm -rf dist",
"ganache": "ganache-cli --port 8545 --deterministic --accounts 11 -e 1000 -i 1234",
"ganache-istanbul": "ganache-cli --port 8545 --deterministic --accounts 11 -e 1000 -i 5678 -k istanbul",
"test": "jest --runInBand",
"lint": "tslint --fix -c tslint.json src/*.ts src/**/*.ts src/**/**/*.ts",
"publish-module": "npm publish --tag beta --access public",
"dist-tag": "npm dist-tag add \"@authereum/contracts@$(jq -r .version <package.json)\" latest",
"truffle-reset": "rm -rf build && truffle compile && truffle migrate --reset",
"release": "npm run clean && npm test && npm run publish-module && npm run dist-tag",
"prepare": "npm run lint && npm run build"
},
"author": "",
"license": "MIT",
"dependencies": {
"@authereum/utils": "0.0.1-beta.79",
"@openzeppelin/test-helpers": "^0.5.3",
"@truffle/contract": "^4.1.0",
"@types/node": "^12.7.2",
"eth-ens-namehash": "^2.0.8",
"ethereumjs-util": "^6.1.0",
"ethers": "^4.0.33",
"ganache-core": "^2.8.0",
"is-valid-signature": "0.1.2",
"jest": "^24.9.0",
"mocha": "^7.0.1",
"mocha-parallel-tests": "^2.2.3-beta.0",
"openzeppelin-eth": "^2.2.0",
"openzeppelin-solidity": "^2.3.0",
"solc": "^0.5.8",
"solidity-bytes-utils": "0.0.8",
"truffle": "5.1.0",
"truffle-privatekey-provider": "^1.3.0",
"typescript": "^3.7.2",
"web3": "1.2.4",
"web3-providers-ws": "1.2.4",
"zeppelin-solidity": "^1.12.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"chai": "^4.2.0",
"dotenv": "^8.0.0",
"eslint-config-standard-with-typescript": "^7.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"standard": "^12.0.1",
"standardx": "^3.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"jest": "^24.9.0"
},
"keywords": [],
"standardx": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
}
}