aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: c69700bc1922852f17f2a3163a0f1d849fd184ac (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
  "name": "0x.js",
  "version": "0.7.0",
  "description": "A javascript library for interacting with the 0x protocol",
  "keywords": [
    "0x.js",
    "0xproject",
    "ethereum",
    "tokens",
    "exchange"
  ],
  "main": "lib/src/index.js",
  "types": "lib/src/index.d.ts",
  "scripts": {
    "prebuild": "npm run clean",
    "build": "run-p build:*:prod",
    "prepublish": "run-p build:umd:prod build:commonjs:dev",
    "postpublish": "run-s release docs:json upload_docs_json",
    "release": "publish-release --assets _bundles/index.js,_bundles/index.min.js",
    "upload_docs_json": "aws s3 cp docs/index.json s3://0xjs-docs-jsons/$(git describe --tags).json --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type aplication/json",
    "lint": "tslint src/*.ts test/*.ts",
    "test": "run-s clean test:commonjs",
    "test:umd": "./scripts/test_umd.sh",
    "test:coverage": "nyc npm run test --all",
    "report_test_coverage": "nyc report --reporter=text-lcov | coveralls",
    "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 -m \"${npm_package_config_mnemonic}\"",
    "docs:json": "typedoc --excludePrivate --excludeExternals --target ES5 --json docs/index.json .",
    "docs:generate": "typedoc --out docs .",
    "docs:open": "opn docs/index.html",
    "clean": "shx rm -rf _bundles lib test_temp",
    "build:dev": "npm run clean && run-p build:*:dev",
    "build:umd:dev": "webpack",
    "build:umd:prod": "NODE_ENV=production webpack",
    "build:commonjs:dev": "tsc; copyfiles -u 2 ./src/artifacts/*.json ../0x.js/lib/src/artifacts;",
    "test:commonjs": "run-s build:commonjs:dev run_mocha",
    "pretest:umd": "run-s clean build:*:dev",
    "substitute_umd_bundle": "npm run remove_src_files_not_used_by_tests; shx mv _bundles/* lib/src",
    "remove_src_files_not_used_by_tests": "find ./lib/src \\( -path ./lib/src/utils -o -path ./lib/src/schemas -o -path \"./lib/src/types.*\" \\) -prune -o -type f -print | xargs rm",
    "run_mocha": "mocha lib/test/**/*_test.js --timeout 3000"
  },
  "config": {
    "artifacts": "Proxy Exchange TokenRegistry Token Mintable EtherToken",
    "mnemonic": "concert load couple harbor equip island argue ramp clarify fence smart topic"
  },
  "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/jsonschema": "^1.1.1",
    "@types/lodash": "^4.14.64",
    "@types/mocha": "^2.2.41",
    "@types/node": "^8.0.1",
    "@types/sinon": "^2.2.2",
    "awesome-typescript-loader": "^3.1.3",
    "bignumber.js": "^4.0.2",
    "chai": "^4.0.1",
    "chai-as-promised": "^6.0.0",
    "chai-as-promised-typescript-typings": "0.0.3",
    "chai-bignumber": "0xProject/chai-bignumber",
    "chai-typescript-typings": "^0.0.0",
    "copyfiles": "^1.2.0",
    "coveralls": "^2.13.1",
    "dirty-chai": "^1.2.2",
    "ethereumjs-testrpc": "3.0.5",
    "json-loader": "^0.5.4",
    "mocha": "^3.4.1",
    "npm-run-all": "^4.0.2",
    "nyc": "^11.0.1",
    "opn-cli": "^3.1.0",
    "request": "^2.81.0",
    "request-promise-native": "^1.0.4",
    "shx": "^0.2.2",
    "sinon": "^2.3.2",
    "source-map-support": "^0.4.15",
    "truffle-hdwallet-provider": "^0.0.3",
    "tslint": "^5.3.2",
    "tslint-config-0xproject": "^0.0.2",
    "typedoc": "^0.7.1",
    "typescript": "^2.3.3",
    "web3-provider-engine": "^13.0.1",
    "web3-typescript-typings": "^0.0.10",
    "webpack": "^2.6.0"
  },
  "dependencies": {
    "bignumber.js": "^4.0.2",
    "compare-versions": "^3.0.1",
    "es6-promisify": "^5.0.0",
    "ethereumjs-abi": "^0.6.4",
    "ethereumjs-util": "^5.1.1",
    "find-versions": "^2.0.0",
    "jsonschema": "^1.1.1",
    "lodash": "^4.17.4",
    "publish-release": "^1.3.3",
    "truffle-contract": "^2.0.1",
    "web3": "^0.19.0"
  }
}