UNPKG

1.68 kBJSONView Raw
1{
2 "name": "remix-core",
3 "version": "0.0.5",
4 "description": "Ethereum IDE and tools for the web",
5 "contributors": [
6 {
7 "name": "Yann Levreau",
8 "email": "yann@ethereum.com"
9 },
10 {
11 "name": "Liana Husikyan",
12 "email": "liana@ethereum.com"
13 }
14 ],
15 "main": "./index.js",
16 "dependencies": {
17 "babel-preset-es2015": "^6.24.0",
18 "babel-plugin-transform-object-assign": "^6.22.0",
19 "babel-eslint": "^7.1.1",
20 "babelify": "^7.3.0",
21 "fast-async": "^6.1.2",
22 "remix-lib": "latest",
23 "standard": "^7.0.1",
24 "tape": "^4.6.0"
25 },
26 "scripts": {
27 "test": "standard && tape ./test/tests.js"
28 },
29 "standard": {
30 "ignore": [
31 "node_modules/*",
32 "build/*",
33 "test/resources/*"
34 ],
35 "parser": "babel-eslint"
36 },
37 "repository": {
38 "type": "git",
39 "url": "git+https://github.com/ethereum/remix.git"
40 },
41 "author": "cpp-ethereum team",
42 "license": "MIT",
43 "bugs": {
44 "url": "https://github.com/ethereum/remix/issues"
45 },
46 "homepage": "https://github.com/ethereum/remix#readme",
47 "browserify": {
48 "transform": [
49 [
50 "babelify",
51 {
52 "plugins": [
53 [
54 "fast-async",
55 {
56 "runtimePatten": null,
57 "compiler": {
58 "promises": true,
59 "es7": true,
60 "noRuntime": true,
61 "wrapAwait": true
62 }
63 }
64 ],
65 "transform-object-assign"
66 ]
67 }
68 ],
69 [
70 "babelify",
71 {
72 "presets": [
73 "es2015"
74 ]
75 }
76 ]
77 ]
78 }
79}