-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "devchain-asm",
"version": "2.0.1",
"description": "Assembly code test project",
"files": [
"build",
"contracts",
"test"
],
"scripts": {
"compile": "truffle compile",
"console": "truffle console",
"coverage": "scripts/coverage.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\"",
"test": "npm run compile && scripts/test.sh",
"flatten": "node_modules/.bin/truffle-flattener"
},
"repository": {
"type": "git",
"url": "https://github.com/DevchainUserGroup/Devchain-ASM.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contract",
"security",
"core",
"erc20",
"assembly"
],
"author": "Cyril Lapinte",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevchainUserGroup/Devchain-ASM/issues"
},
"homepage": "https://geneva.devchain.io",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereumjs-util": "^6.1.0",
"ganache-cli": "^6.7.0",
"solhint": "^2.3.0",
"solidity-coverage": "^0.6.7",
"solidity-docgen": "^0.3.1",
"truffle": "^5.0.38",
"truffle-flattener": "^1.4.2",
"truffle-hdwallet-provider": "^1.0.9"
}
}