-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"name": "aluna-smart-contracts",
"version": "0.0.1",
"description": "Smart contracts for the ALN token platform and distribution",
"files": [
"build",
"contracts"
],
"scripts": {
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint test lib/src",
"lint:js:fix": "npm run lint -- --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"test": "scripts/test.sh",
"coverage": "scripts/coverage.sh",
"codecov": "node_modules/.bin/codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/levelkdev/aluna-smart-contracts.git"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts",
"wallet"
],
"authors": "Augusto Lemble <[email protected]>, Michael Raybman <[email protected]>,John Kelleher <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/levelkdev/aluna-smart-contracts/issues"
},
"homepage": "https://github.com/levelkdev/aluna-smart-contracts",
"devDependencies": {
"@openzeppelin/cli": "^2.6.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"ethereumjs-util": "^6.2.0",
"ganache-cli": "^6.5.0",
"openzeppelin-test-helpers": "^0.3.2",
"solhint": "^1.5.0",
"solidity-coverage": "^0.6.7",
"truffle": "^5.0.29",
"truffle-hdwallet-provider": "^1.0.17"
},
"dependencies": {
"@openzeppelin/contracts": "^2.4.0"
}
}