-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.6 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": "occ-contracts",
"version": "0.0.1",
"description": "solidity contracts for a cofounder-based ethereum token",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"ci": "concurrently --kill-others-on-fail \"npm run pretest\" \"npm run cover\"",
"compile": "truffle compile",
"cover": "node_modules/.bin/solidity-coverage",
"lint:js": "eslint test/**/*.js migrations/**/*.js",
"lint:sol": "solhint contracts/*.sol contracts/*/*.sol test/*.sol test/*/*.sol",
"lint": "npm run lint:js && npm run lint:sol",
"mine": "echo 'This is my token. There are many like it, but this one is mine'",
"pretest": "npm run lint",
"test": "truffle test",
"truffle": "truffle dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OriginalCrypto/occ-contracts.git"
},
"keywords": [
"ethereum",
"token"
],
"authors": [
"Mish Ochu <mishochu@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/OriginalCrypto/occ-contracts/issues"
},
"homepage": "https://github.com/OriginalCrypto/occ-contracts#readme",
"devDependencies": {
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"eslint": "^4.16.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.2.1",
"solhint": "^1.1.10",
"solidity-coverage": "^0.4.8",
"truffle": "^4.0.4",
"truffle-hdwallet-provider": "git+https://github.com/trufflesuite/truffle-hdwallet-provider.git#71520a2"
},
"engines": {
"node": ">= 4.x <= 9.x",
"npm": ">= 2.x <= 5.x"
}
}