forked from netgum/archanova-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 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
{
"name": "@archanova/contracts",
"version": "1.0.0",
"description": "Archanova solidity contracts",
"author": {
"name": "Stanislaw Glogowski",
"email": "hello@newobject.pl"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netgum/archanova-contracts.git"
},
"bugs": {
"url": "https://github.com/netgum/archanova-contracts/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "./scripts/test.sh --network=test",
"build": "node ./scripts/build.js",
"compile": "truffle compile",
"migrate:local": "truffle migrate --reset --network=local",
"migrate:main": "truffle migrate --network=main",
"migrate:ropsten": "truffle migrate --network=ropsten",
"migrate:rinkeby": "truffle migrate --network=rinkeby",
"migrate:kovan": "truffle migrate --network=kovan",
"migrate:sokol": "truffle migrate --network=sokol",
"migrate:xdai": "truffle migrate --network=xdai"
},
"dependencies": {
"@ensdomains/ens": "0.3.5",
"openzeppelin-solidity": "2.1.2",
"solidity-bytes-utils": "0.0.8"
},
"devDependencies": {
"@types/fs-extra": "^5.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.0",
"acorn": "^6.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"expect": "^24.8.0",
"fs-extra": "^7.0.1",
"ganache-cli": "^6.4.3",
"tar": ">=4.4.2",
"truffle": "5.0.10",
"truffle-hdwallet-provider": "^1.0.8",
"web3-utils": "^1.0.0-beta.54"
}
}