-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.28 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
{
"name": "@windingtree/org.id-directories",
"version": "1.0.0",
"description": "Directory and DirectoryIndex smart contracts of the Winding Tree protocol",
"scripts": {
"test": "scripts/test.sh",
"lint": "npx eslint test scripts && npx solhint 'contracts/**/*.sol'",
"lint:fix": "npx eslint test scripts --fix && npx solhint 'contracts/**/*.sol'",
"dev-net": "npx ganache-cli --gasLimit 0xfffffffffff -m --port 8545 --deterministic",
"coverage": "SOLIDITY_COVERAGE=true npm run test",
"soldoc": "npx solidity-docgen --solc-module solc-0.5.17",
"flattener": "scripts/flattener.sh",
"clean": "rimraf build",
"build-index": "node scripts/build-index.js > index.js",
"set-oz-version": "npx openzeppelin bump `node -e \"const p = require('./package.json');console.log(p.version);\"`",
"version": "npm run set-oz-version && git add .openzeppelin/project.json && npm run build-index && git add index.js",
"prebuild": "npm run clean",
"build": "npx truffle compile && npm run build-index"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/windingtree/org.id-directories"
},
"keywords": [
"winding-tree",
"security",
"encryption",
"smart-contract",
"solidity"
],
"main": "index.js",
"files": [
".openzeppelin",
"build",
"contracts",
"index.js"
],
"author": "Winding Tree Developers <dev@windingtree.com>",
"license": "GPL-3.0-only",
"dependencies": {
"@openzeppelin/contracts": "2.5.0",
"@windingtree/org.id": "1.1.5"
},
"devDependencies": {
"@kleros/erc-792": "^3.0.0",
"@kleros/ethereum-libraries": "^1.0.0",
"@openzeppelin/cli": "2.7.1",
"@truffle/contract": "4.3.4",
"@truffle/hdwallet-provider": "1.2.1",
"chai": "4.2.0",
"coveralls": "3.1.0",
"eslint": "7.17.0",
"ganache-cli": "6.12.1",
"husky": "4.3.0",
"openzeppelin-test-helpers": "0.5.1",
"rimraf": "3.0.2",
"solc": "0.7.1",
"solc-0.5.17": "npm:solc@0.5.17",
"solhint": "3.2.1",
"solidity-coverage": "0.7.11",
"solmd": "0.4.0",
"truffle": "5.1.48",
"truffle-flattener": "1.5.0",
"solidity-docgen": "0.5.11",
"@windingtree/smart-contracts-tools": "0.1.1"
},
"engines": {
"node": ">=12"
}
}