-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "smart-contract-box",
"version": "1.0.0",
"description": "A ready to go boilerplate for Smart Contracts creation",
"files": [
"contracts",
"test"
],
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"token",
"truffle",
"openzeppelin"
],
"scripts": {
"dev": "lite-server",
"console": "truffle develop",
"compile": "scripts/compile.sh",
"coverage": "scripts/coverage.sh",
"clean": "rm -rf coverage",
"profile": "npm run clean && npm run coverage && open coverage/index.html",
"test": "npm run compile && scripts/test.sh",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"flat": "scripts/flat.sh",
"analyze": "scripts/analyze.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/bc1tech/smart-contract-box.git"
},
"homepage": "https://github.com/bc1tech/smart-contract-box/",
"bugs": {
"url": "https://github.com/bc1tech/smart-contract-box/issues"
},
"author": "BC1 - Blockchain Pioneers (https://www.bc1.tech)",
"contributors": [
{
"name": "Vittorio Minacori",
"url": "https://github.com/vittominacori"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"ethereumjs-util": "^6.1.0",
"ethjs-abi": "^0.2.1",
"ganache-cli": "^6.5.1",
"ganache-cli-coverage": "https://github.com/frangio/ganache-cli/releases/download/v6.4.1-coverage/ganache-cli-coverage-6.4.1.tgz",
"lite-server": "^2.5.3",
"openzeppelin-test-helpers": "^0.4.2",
"pify": "^4.0.1",
"solhint": "^2.1.2",
"solidity-coverage": "github:rotcivegaf/solidity-coverage#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"surya": "^0.2.11",
"truffle": "^5.0.30",
"truffle-flattener": "1.2.11"
},
"dependencies": {
"eth-token-recover": "2.3.2",
"openzeppelin-solidity": "2.3.0"
}
}