aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 8540e7785de82b7f0eea14fe18d3e60d6af04bd2 (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
{
  "name": "0x.js",
  "version": "0.0.0",
  "description": "A javascript library for interacting with the 0x protocol",
  "keywords": [
    "0x.js",
    "0xproject",
    "ethereum",
    "tokens",
    "exchange"
  ],
  "scripts": {
    "clean": "shx rm -rf _bundles lib lib-esm",
    "build:bundle": "webpack",
    "build:commonjs": "tsc",
    "build:es6": "tsc -m es6 --outDir lib-esm",
    "build": "npm run clean && run-p build:*",
    "lint": "tslint src/ts/**/*",
    "test": "run-s clean build:commonjs && mocha lib/test/**/*.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/0xProject/0x.js"
  },
  "license": "Apache-2.0",
  "engines": {
    "node": ">=6.0.0"
  },
  "devDependencies": {
    "@types/chai": "^3.5.2",
    "@types/mocha": "^2.2.41",
    "awesome-typescript-loader": "^3.1.3",
    "chai": "^3.5.0",
    "mocha": "^3.4.1",
    "npm-run-all": "^4.0.2",
    "shx": "^0.2.2",
    "tslint": "^5.3.2",
    "tslint-config-0xproject": "^0.0.2",
    "typescript": "^2.3.3",
    "webpack": "^2.6.0"
  }
}