-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
90 lines (90 loc) · 2.82 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
{
"name": "@authereum/contracts",
"version": "1.0.0",
"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": "rimraf dist",
"ganache": "ganache-cli -h 0.0.0.0 -p 8545 -d -a 11 -e 1000 -i 1234 -k muirGlacier",
"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": "rimraf build && truffle compile && truffle migrate --reset",
"bump": "lerna-sync-version",
"release": "npm run clean && npm test && npm run publish-module && npm run dist-tag",
"bump-release": "npm run bump && npm run release",
"prepare": "npm run lint && npm run build",
"docker": "npm run docker:build && npm run docker:run",
"docker:build": "docker build -t authereum/ganache .",
"docker:run": "docker run -p 8545:8545 authereum/ganache"
},
"author": "",
"license": "MIT",
"dependencies": {
"@authereum/utils": "0.0.1-beta.241",
"@openzeppelin/contracts": "2.5.0",
"@openzeppelin/test-helpers": "0.5.6",
"@truffle/contract": "^4.1.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/node": "^12.12.37",
"colors": "1.4.0",
"eth-ens-namehash": "^2.0.8",
"ethereum-hdwallet": "0.0.26",
"ethereumjs-util": "^6.1.0",
"ethers": "^4.0.33",
"ganache-core": "^2.8.0",
"is-valid-signature": "0.1.3",
"isomorphic-fetch": "2.2.1",
"jest": "^24.9.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-plugin-verify": "^0.3.9",
"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",
"jest": "^24.9.0",
"lerna-sync-version": "0.0.3",
"rimraf": "3.0.2",
"standard": "^12.0.1",
"standardx": "^3.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1"
},
"keywords": [],
"standardx": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
}
}