-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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": "sorted-collection",
"version": "1.0.0",
"description": "SortedCollection Contracts is an utility library for using sorted list data structures.",
"main": "truffle-config.js",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks"
],
"scripts": {
"console": "truffle console",
"lint": "./node_modules/.bin/eslint . && ./node_modules/.bin/solium --dir .",
"test": "./scripts/test.sh",
"prepare": "./scripts/synchronize-pm.sh"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ripio/sorted-collection.git"
},
"author": "Joaquin Pablo Gonzalez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ripio/sorted-collection/issues"
},
"homepage": "https://github.com/ripio/sorted-collection#readme",
"devDependencies": {
"eslint-plugin-import": "^2.18.0",
"eth-gas-reporter": "^0.2.9",
"husky": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"openzeppelin-test-helpers": "^0.4.2",
"bn-chai": "^1.0.1",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"macaron-cli": "^6.4.1",
"rp-solidity-coverage": "^0.5.13",
"solium": "^1.2.4",
"truffle": "^5.0.30",
"truffle-hdwallet-provider": "^1.0.16",
"mem": ">=4.0.0"
}
}