-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "quantal",
"version": "0.0.10",
"description": "Fast and lightweight build tool for Solidity",
"bin": {
"quantal": "src/index.js"
},
"main": "src/quantal-library.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage --collectCoverageFrom='src/**/*.js'",
"report-coverage": "cat coverage/lcov.info | coveralls",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macor161/quantal.git"
},
"author": "Mathew Cormier",
"license": "MIT",
"bugs": {
"url": "https://github.com/macor161/quantal/issues"
},
"homepage": "https://github.com/macor161/quantal#readme",
"dependencies": {
"JSONStream": "^1.3.5",
"async": "2.6.1",
"chalk": "^2.4.2",
"cli-progress": "^2.1.1",
"colors": "^1.1.2",
"command-exists": "^1.2.8",
"commander": "^2.20.0",
"configstore": "^4.0.0",
"debug": "^4.1.1",
"detect-installed": "^2.0.4",
"find-up": "^2.1.0",
"fs-extra": "^7.0.1",
"get-installed-path": "^4.0.8",
"glob": "^7.1.4",
"import-fresh": "^3.0.0",
"line-column": "^1.0.2",
"lodash": "^4.17.15",
"multispinner": "^0.2.1",
"ora": "^3.4.0",
"original-require": "1.0.1",
"outdent": "^0.7.0",
"pad-left": "^2.1.0",
"pad-right": "^0.2.2",
"request": "^2.85.0",
"request-progress": "^3.0.0",
"request-promise": "^4.2.2",
"semver": "^6.1.1",
"solc": "0.5.0",
"solidity-ast-traverse": "^0.0.1",
"strip-ansi": "^5.2.0",
"truffle-artifactor": "4.0.10",
"truffle-config": "1.1.17",
"truffle-contract": "4.0.15",
"truffle-contract-sources": "0.1.3",
"truffle-expect": "0.0.7",
"truffle-provider": "0.1.10",
"truffle-provisioner": "^0.1.5",
"v8-compile-cache": "^2.0.2"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"execa": "^2.0.4",
"jest": "^24.9.0",
"require-all": "^3.0.0"
},
"files": [
"src"
],
"jest": {
"testEnvironment": "node"
},
"keywords": [
"ethereumn",
"solidity"
]
}