-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.17 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
{
"name": "pumapay-contracts",
"version": "0.0.1",
"license": "MIT",
"private": true,
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks",
"!/contracts/examples",
"!/test/mocks"
],
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"pumapay",
"pull-payments"
],
"scripts": {
"compile": "npx truffle compile",
"coverage": "npx truffle run coverage",
"test": "./scripts/test.sh",
"docs": "oz-docs -c docs",
"docs:watch": "npm run docs watch contracts 'docs/*.hbs'",
"prepare-docs": "scripts/prepare-docs.sh",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint": "npm run lint:sol",
"prepare": "node scripts/prepare.js",
"release": "./scripts/release/release.sh",
"version": "./scripts/release/version.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/pumapayio/pumapay-contracts.git"
},
"dependencies": {},
"devDependencies": {
"@openzeppelin/contracts": "^2.4.0",
"bignumber": "1.1.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-bignumber": "3.0.0",
"codelyzer": "^5.2.1",
"concurrently": "^4.1.0",
"coveralls": "^3.0.1",
"eth-crypto": "^1.5.1",
"ethereumjs-util": "^6.2.0",
"ganache-cli": "6.9.0",
"ganache-core-coverage": "https://github.com/OpenZeppelin/ganache-core-coverage/releases/download/2.5.3-coverage/ganache-core-coverage-2.5.3.tgz",
"http-server": "^0.11.1",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.5.1",
"lodash.startcase": "^4.4.0",
"micromatch": "^4.0.2",
"openzeppelin-docs-utils": "github:OpenZeppelin/docs-utils",
"openzeppelin-test-helpers": "0.4.3",
"solhint": "2.3.0",
"solidity-coverage": "^0.7.1",
"solidity-docgen": "^0.3.13",
"truffle": "^5.1.10",
"truffle-flattener": "1.4.2",
"truffle-security": "^1.6.2",
"tslint": "^5.20.1",
"typescript": "3.5.1"
}
}