aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/package.json
blob: 145bbff1677d78035322684f6686f39b412627b1 (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.28.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": "run-s clean generate_contract_wrappers",
    "build": "run-p build:umd:prod build:commonjs; exit 0;",
    "docs:json": "typedoc --excludePrivate --excludeExternals --target ES5 --json $JSON_FILE_PATH $PROJECT_DIR",
    "upload_docs_json": "aws s3 cp generated_docs/index.json $S3_URL --profile 0xproject --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type application/json",
    "generate_contract_wrappers": "node ../abi-gen/lib/index.js --abiGlob 'src/artifacts/@(Exchange|Token|TokenTransferProxy|EtherToken|TokenRegistry|DummyToken).json' --templates contract_templates --output src/contract_wrappers/generated",
    "lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'",
    "test:circleci": "run-s test:coverage report_test_coverage && if [ $CIRCLE_BRANCH = \"development\" ]; then yarn test:umd; fi",
    "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;",
    "clean": "shx rm -rf _bundles lib test_temp",
    "build:umd:dev": "webpack",
    "build:umd:prod": "NODE_ENV=production webpack",
    "build:commonjs": "tsc && copyfiles -u 2 './src/artifacts/**/*.json' ./lib/src/artifacts;",
    "test:commonjs": "run-s build:commonjs run_mocha",
    "pretest:umd": "run-s clean build:umd:dev build:commonjs",
    "substitute_umd_bundle": "shx mv _bundles/* lib/src",
    "run_mocha": "mocha lib/test/**/*_test.js --timeout 10000 --bail --exit"
  },
  "config": {
    "artifacts": "TokenTransferProxy Exchange TokenRegistry Token EtherToken"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/0xProject/0x.js"
  },
  "license": "Apache-2.0",
  "engines": {
    "node": ">=6.0.0"
  },
  "devDependencies": {
    "@0xproject/abi-gen": "^0.0.3",
    "@0xproject/dev-utils": "^0.0.2",
    "@0xproject/tslint-config": "^0.3.0",
    "@0xproject/types": "^0.1.1",
    "@types/bintrees": "^1.0.2",
    "@types/jsonschema": "^1.1.1",
    "@types/lodash": "^4.14.86",
    "@types/mocha": "^2.2.42",
    "@types/node": "^8.0.53",
    "@types/sinon": "^2.2.2",
    "@types/uuid": "^3.4.2",
    "awesome-typescript-loader": "^3.1.3",
    "chai": "^4.0.1",
    "chai-as-promised": "^7.1.0",
    "chai-as-promised-typescript-typings": "^0.0.3",
    "chai-bignumber": "^2.0.1",
    "chai-typescript-typings": "^0.0.1",
    "copyfiles": "^1.2.0",
    "coveralls": "^3.0.0",
    "dirty-chai": "^2.0.1",
    "json-loader": "^0.5.4",
    "mocha": "^4.0.1",
    "npm-run-all": "^4.1.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": "^4.0.0",
    "source-map-support": "^0.5.0",
    "truffle-hdwallet-provider": "^0.0.3",
    "tslint": "5.8.0",
    "typedoc": "~0.8.0",
    "typescript": "~2.6.1",
    "web3-provider-engine": "^13.0.1",
    "web3-typescript-typings": "^0.7.2",
    "webpack": "^3.1.0"
  },
  "dependencies": {
    "@0xproject/assert": "^0.0.8",
    "@0xproject/json-schemas": "^0.7.0",
    "@0xproject/utils": "^0.1.1",
    "@0xproject/web3-wrapper": "^0.1.1",
    "bignumber.js": "~4.1.0",
    "bintrees": "^1.0.2",
    "bn.js": "^4.11.8",
    "compare-versions": "^3.0.1",
    "ethereumjs-abi": "^0.6.4",
    "ethereumjs-blockstream": "^2.0.6",
    "ethereumjs-util": "^5.1.1",
    "find-versions": "^2.0.0",
    "js-sha3": "^0.6.1",
    "lodash": "^4.17.4",
    "uuid": "^3.1.0",
    "web3": "^0.20.0"
  }
}