aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: b2c7d4b19841f79fd726ff967bf0c78f171321f8 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
  "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": {
    "build": "npm run clean && run-p build:*:prod",
    "lint": "tslint src/**/*.ts",
    "test": "run-s build:dev test:commonjs test:umd",
    "test:coverage": "nyc npm run test --all",
    "update_contracts": "for i in ${npm_package_config_artifacts}; do copyfiles -u 4 ../contracts/build/contracts/$i.json ../0x.js/src/artifacts; done;",
    "testrpc": "testrpc -p 8545 --networkId 50",
    "docs:json": "typedoc --json docs/index.json .",
    "docs:generate": "typedoc --out docs .",
    "docs:open": "opn docs/index.html",

    "clean": "shx rm -rf _bundles lib",
    "build:dev": "npm run clean && run-p build:*:dev",
    "build:umd:dev": "webpack",
    "build:umd:prod": "webpack -p",
    "build:commonjs:dev": "tsc; copyfiles -u 2 ./src/artifacts/*.json ../0x.js/lib/src/artifacts;",
    "run_mocha": "mocha test_temp/test/**/*_test.js",
    "test:commonjs": "run-s build:commonjs:dev setup_commonjs run_mocha tear_down",
    "test:umd": "run-s build:*:dev setup_umd run_mocha tear_down",
    "setup_commonjs": "shx cp -r lib test_temp",
    "setup_umd": "shx mkdir -p test_temp/src && shx cp _bundles/* test_temp/src && shx cp -r lib/test test_temp/test",
    "tear_down": "shx rm -rf test_temp"
  },
  "config": {
    "artifacts": "Proxy Exchange TokenRegistry Token Mintable EtherToken"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/0xProject/0x.js"
  },
  "license": "Apache-2.0",
  "engines": {
    "node": ">=6.0.0"
  },
  "devDependencies": {
    "@types/bignumber.js": "^4.0.2",
    "@types/chai": "^3.5.2",
    "@types/chai-as-promised": "0.0.30",
    "@types/jsonschema": "^1.1.1",
    "@types/lodash": "^4.14.64",
    "@types/mocha": "^2.2.41",
    "@types/node": "^7.0.22",
    "awesome-typescript-loader": "^3.1.3",
    "bignumber.js": "^4.0.2",
    "chai": "^3.5.0",
    "chai-as-promised": "^6.0.0",
    "chai-bignumber": "^2.0.0",
    "copyfiles": "^1.2.0",
    "ethereumjs-testrpc": "^3.0.5",
    "json-loader": "^0.5.4",
    "mocha": "^3.4.1",
    "npm-run-all": "^4.0.2",
    "nyc": "^10.3.2",
    "opn-cli": "^3.1.0",
    "request": "^2.81.0",
    "request-promise-native": "^1.0.4",
    "shx": "^0.2.2",
    "source-map-support": "^0.4.15",
    "tslint": "^5.3.2",
    "tslint-config-0xproject": "^0.0.2",
    "typedoc": "^0.7.1",
    "typescript": "^2.3.3",
    "web3-provider-engine": "^12.1.0",
    "web3-typescript-typings": "0.0.8",
    "webpack": "^2.6.0"
  },
  "dependencies": {
    "bignumber.js": "^4.0.2",
    "es6-promisify": "^5.0.0",
    "ethereumjs-abi": "^0.6.4",
    "ethereumjs-util": "^5.1.1",
    "jsonschema": "^1.1.1",
    "lodash": "^4.17.4",
    "truffle-contract": "^2.0.0",
    "web3": "^0.19.0"
  }
}