aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 2b7772b51ec2712d5c78e07da773ae5d4efec68e (plain) (blame)
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
{
  "name": "ethereum.js",
  "namespace": "ethereum",
  "version": "0.0.1",
  "description": "Ethereum Compatible JavaScript API",
  "main": "./index.js",
  "directories": {
    "lib": "lib",
    "example": "example"
  },
  "dependencies": {
    "es6-promise": "*",
    "ws": "^0.4.32",
    "xmlhttprequest": "^1.6.0"
  },
  "devDependencies": {
    "bower": "^1.3.12",
    "browserify": "6.x",
    "del": "^0.1.3",
    "gulp": "3.8.x",
    "gulp-browserify-thin": "^0.1.5",
    "gulp-jshint": "^1.9.0",
    "gulp-rename": "^1.2.0",
    "gulp-uglify": "^1.0.1",
    "jshint": "2.5.x"
  },
  "scripts": {
    "build": "gulp",
    "watch": "gulp watch",
    "lint": "gulp lint"
  },
  "browser": {
    "xmlhttprequest": "./lib/browser_fix/xhr.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/cubedro/ethereum.js.git"
  },
  "homepage": "https://github.com/cubedro/ethereum.js",
  "bugs": {
    "url": "https://github.com/cubedro/ethereum.js/issues"
  },
  "keywords": [
    "ethereum",
    "javascript",
    "API"
  ],
  "author": "ethdev.com",
  "authors": [
    {
      "name": "Jeffery Wilcke",
      "email": "jeff@ethdev.com",
      "url": "https://github.com/obscuren"
    },
    {
      "name": "Marek Kotewicz",
      "email": "marek@ethdev.com",
      "url": "https://github.com/debris"
    },
    {
      "name": "Marian Oancea",
      "email": "marian.oancea@gmail.com",
      "url": "https://github.com/cubedro"
    }
  ],
  "license": "LGPL-3.0"
}