-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "solidity-treemap",
"version": "0.0.2",
"description": "A Red-Black tree based Navigable Sorted Order Static Map in Solidity",
"files": [
"contracts",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/saurfang/solidity-treemap"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "./scripts/test.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"coverage": "./node_modules/.bin/solidity-coverage && cat coverage/lcov.info | node_modules/.bin/coveralls"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"rbt",
"treemap"
],
"author": "Forest Fang <forest.fang@outlook.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"ganache-cli": "6.1.0",
"solidity-coverage": "^0.5.4",
"solium": "^1.1.7",
"source-map-support": "^0.5.6",
"truffle": "^4.1.11",
"openzeppelin-solidity": "^1.9.0"
}
}