forked from remix-project-org/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.93 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "chainsql-remix-simulator",
"version": "0.0.10",
"description": "ChainSQL IDE and tools for the web, modified from Ethereum",
"contributors": [
{
"name": "Iuri Matias",
"email": "[email protected]"
},
{
"name": "Yann Levreau",
"email": "[email protected]"
}
],
"main": "./index.js",
"dependencies": {
"ansi-gray": "^0.1.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2017": "^6.24.1",
"babelify": "^7.3.0",
"body-parser": "^1.18.2",
"color-support": "^1.1.3",
"express": "^4.16.3",
"fast-async": "^6.3.7",
"merge": "^1.2.0",
"chainsql-remix-lib": "^0.3.14",
"standard": "^10.0.3",
"time-stamp": "^2.0.0",
"web3": "1.0.0-beta.27"
},
"scripts": {
"test": "standard && mocha test/"
},
"bin": {
"ethsim": "./bin/ethsim",
"chainsql-remix-simulator": "./bin/ethsim"
},
"standard": {
"ignore": [
"node_modules/*"
],
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chainsql/remix.git"
},
"author": "remix team",
"license": "MIT",
"bugs": {
"url": "https://github.com/chainsql/remix/issues"
},
"homepage": "https://github.com/chainsql/remix#readme",
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"transform-object-assign"
]
}
],
[
"babelify",
{
"presets": [
"es2017"
]
}
]
]
},
"devDependencies": {
"mocha": "^5.2.0"
}
}