This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.47 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
{
"name": "oasis-compile",
"version": "2.0.0",
"description": "truffle compiler extension for Oasis",
"main": "index.js",
"bin": {
"oasis-compile": "src/index.js"
},
"scripts": {
"test": "mocha test/**/*",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oasislabs/oasis-compile.git"
},
"keywords": [
"web3c",
"oasis"
],
"author": "Oasis Labs <info@oasislabs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oasislabs/oasis-compile/issues"
},
"homepage": "https://github.com/oasislabs/oasis-compile#readme",
"dependencies": {
"@babel/runtime": "^7.3.1",
"chalk": "^2.4.1",
"find-up": "^3.0.0",
"rimraf": "^2.6.2",
"toml": "^2.3.3",
"truffle-compile": "^3.0.13",
"truffle-external-compile": "^1.0.0-beta.0",
"truffle-resolver": "^4.0.4",
"web3c": "git+https://github.com/oasislabs/web3c.js.git"
},
"devDependencies": {
"mocha": "^5.2.0",
"eslint": "^5.6.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"no-console": 0
}
}
}