-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.86 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
{
"name": "jibrel-contracts",
"version": "1.0.2",
"description": "Jibrel smart contracts",
"main": "truffle.js",
"scripts": {
"test": "scripts/test.sh",
"console": "./node_modules/.bin/truffle console",
"compile": "./node_modules/.bin/truffle compile",
"migrate": "./node_modules/.bin/truffle migrate",
"coverage": "scripts/coverage.sh",
"coveralls": "scripts/coveralls.sh",
"lint": "npm run lint:js",
"lint:eslint": "node ./node_modules/eslint/bin/eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"lint:sol": "./node_modules/.bin/solium -d contracts/",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": "npm run lint:eslint --"
},
"precommit": "lint:staged",
"repository": {
"type": "git",
"url": "https://github.com/jibrelnetwork/jibrel-contracts.git"
},
"author": "Victor Mezrin <[email protected]>",
"license": "MIT",
"keywords": [
"jibrel",
"crydr",
"asset",
"solidity",
"ethereum",
"smart",
"contracts",
"security"
],
"dependencies": {
"async-mutex": "^0.1.3",
"babel-eslint": "^8.2.6",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"bignumber.js": "^5.0.0",
"bluebird": "^3.5.1",
"coveralls": "^3.0.2",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"flow": "^0.2.3",
"ganache-cli": "^6.1.6",
"lint-staged": "^7.2.0",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2",
"solidity-coverage": "^0.5.5",
"solium": "^1.1.8",
"truffle": "^4.1.13",
"truffle-hdwallet-provider": "0.0.6"
}
}