-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.08 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
{
"name": "ada-blockchain",
"version": "1.2.3",
"description": "Blockchain implementation of BA",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "bash script/test.sh",
"git": "func() { git add . && git commit -m \"$1\" && npm version ${SEMANTIC:-patch} && git push origin HEAD && git push --tags; }; func",
"release:major": "env SEMANTIC=major npm run git",
"release:minor": "env SEMANTIC=minor npm run git",
"release:patch": "env SEMANTIC=patch npm run git",
"create:ganache": "oz compile && oz create --network ganache ANO",
"create:ropsten": "oz compile && oz create --network ropsten ANO"
},
"author": "Jude Dike",
"license": "ISC",
"devDependencies": {
"@openzeppelin/cli": "^2.6.0",
"@truffle/hdwallet-provider": "^1.0.30"
},
"dependencies": {
"@0x/contracts-utils": "^4.3.0",
"@openzeppelin/contracts-ethereum-package": "^2.4.0",
"@openzeppelin/gsn-helpers": "^0.2.3",
"@openzeppelin/gsn-provider": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.4",
"dotenv": "^8.2.0"
}
}