forked from jibrelnetwork/jibrel-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "jibrel-contracts",
"version": "0.0.1",
"description": "Jibrel smart contracts",
"main": "truffle.js",
"scripts": {
"test": "scripts/test.sh",
"console": "truffle console",
"compile": "truffle compile",
"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": "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": {
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"bignumber.js": "^4.1.0",
"bluebird": "^3.5.1",
"coveralls": "^2.13.3",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.8.0",
"ethereumjs-testrpc": "^6.0.3",
"lint-staged": "^3.6.1",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2",
"solidity-coverage": "^0.2.7",
"solium": "^1.0.9",
"truffle": "4.0.1"
}
}