-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
52 lines (52 loc) · 1.72 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
{
"name": "azimuth-solidity",
"version": "1.2.4",
"description": "A general-purpose PKI on the Ethereum blockchain.",
"main": "truffle.js",
"engines": {
"node": "16.18.0"
},
"directories": {
"test": "test"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"openzeppelin-solidity": "1.12.0"
},
"devDependencies": {
"ganache-cli": "^6.12.2",
"npm-run-all": "^4.1.3",
"solidity-coverage": "^0.7.5",
"web3": "^1.3.1",
"web3-eth-abi": "^1.0.0-beta.34"
},
"bundledDependencies": [
"openzeppelin-solidity"
],
"scripts": {
"build": "truffle compile",
"test:ganache": "ganache-cli --gasLimit 6000000 > /dev/null &",
"test:setup": "npm run build && npm run test:ganache",
"test:truffle": "truffle test",
"test:extras:upgrade": "truffle test ./test-extras/TestEclipticUpgrade.js",
"test:extras:ecliptic": "truffle test ./test-extras/TestERC721Ecliptic.js",
"test:extras:extensions": "truffle test ./test-extras/TestERC721Extensions.js",
"test:cleanup": "pkill -f ganache-cli",
"test": "npm-run-all test:setup test:truffle test:cleanup --continue-on-error",
"test-extras": "npm-run-all test:setup test:extras:ecliptic test:extras:extensions test:cleanup --continue-on-error",
"fork-mainnet": "node ./test-extras/SetupMainnetFork.js",
"test-upgrade": "npm-run-all test:extras:upgrade test:cleanup --continue-on-error",
"install": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urbit/azimuth.git"
},
"author": "Tlon",
"license": "MIT",
"bugs": {
"url": "https://github.com/urbit/azimuth/issues"
},
"homepage": "https://github.com/urbit/azimuth#readme"
}