-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"name": "flc-v2",
"author": "jollen",
"version": "1.0.0",
"description": "The Flowchain token (FLC v2) smart contract",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"fix:js": "eslint --fix test/**/*.js migrations/**/*.js",
"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",
"publish": "truffle publish",
"pretest": "npm run lint",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowchain/flc-v2.git"
},
"keywords": [
"ethereum"
],
"authors": [
"Jollen <jollen@flowchain.io>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/flowchain/smart-contracts/issues"
},
"homepage": "https://flowchain.co/",
"dependencies": {
"solc": "^0.6.2",
"truffle": "^5.1.11",
"truffle-hdwallet-provider": "^1.0.17"
}
}