1 | {
|
2 | "name": "@0x/web3-wrapper",
|
3 | "version": "8.0.1",
|
4 | "engines": {
|
5 | "node": ">=6.12"
|
6 | },
|
7 | "description": "Wraps around web3 and gives a nicer interface",
|
8 | "main": "lib/src/index.js",
|
9 | "types": "lib/src/index.d.ts",
|
10 | "scripts": {
|
11 | "build": "tsc -b",
|
12 | "build:ci": "yarn build",
|
13 | "watch_without_deps": "tsc -w",
|
14 | "clean": "shx rm -rf lib generated_docs",
|
15 | "lint": "tslint --format stylish --project .",
|
16 | "fix": "tslint --fix --format stylish --project .",
|
17 | "test": "yarn run_mocha",
|
18 | "rebuild_and_test": "run-s clean build test",
|
19 | "test:circleci": "yarn test:coverage",
|
20 | "run_mocha": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --bail --exit",
|
21 | "test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
|
22 | "coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
|
23 | "diff_docs": "git diff --exit-code ./docs",
|
24 | "docs:md": "ts-doc-gen --sourceDir='$PROJECT_FILES' --output=$MD_FILE_DIR --fileExtension=mdx --tsconfig=./typedoc-tsconfig.json",
|
25 | "docs:json": "typedoc --excludePrivate --excludeExternals --excludeProtected --ignoreCompilerErrors --target ES5 --tsconfig typedoc-tsconfig.json --json $JSON_FILE_PATH $PROJECT_FILES"
|
26 | },
|
27 | "config": {
|
28 | "postpublish": {
|
29 | "assets": []
|
30 | }
|
31 | },
|
32 | "license": "Apache-2.0",
|
33 | "repository": {
|
34 | "type": "git",
|
35 | "url": "https://github.com/0xProject/tools.git"
|
36 | },
|
37 | "bugs": {
|
38 | "url": "https://github.com/0xProject/tools/issues"
|
39 | },
|
40 | "homepage": "https://github.com/0xProject/tools/tree/main/web3-wrapper",
|
41 | "devDependencies": {
|
42 | "@0x/ts-doc-gen": "^0.0.28",
|
43 | "@0x/tslint-config": "^4.1.5",
|
44 | "@types/lodash": "4.14.104",
|
45 | "@types/mocha": "^5.2.7",
|
46 | "chai": "^4.0.1",
|
47 | "chai-as-promised": "^7.1.0",
|
48 | "chai-bignumber": "^3.0.0",
|
49 | "dirty-chai": "^2.0.1",
|
50 | "ganache": "^7.4.0",
|
51 | "make-promises-safe": "^1.1.0",
|
52 | "mocha": "^6.2.0",
|
53 | "npm-run-all": "^4.1.2",
|
54 | "nyc": "^11.0.1",
|
55 | "shx": "^0.2.2",
|
56 | "tslint": "5.11.0",
|
57 | "typedoc": "~0.16.11",
|
58 | "typescript": "4.2.2"
|
59 | },
|
60 | "dependencies": {
|
61 | "@0x/assert": "^3.0.36",
|
62 | "@0x/json-schemas": "^6.4.6",
|
63 | "@0x/typescript-typings": "^5.3.2",
|
64 | "@0x/utils": "^7.0.0",
|
65 | "@types/node": "12.12.54",
|
66 | "ethereum-types": "^3.7.1",
|
67 | "ethereumjs-util": "^7.1.5",
|
68 | "ethers": "~4.0.4",
|
69 | "lodash": "^4.17.21"
|
70 | },
|
71 | "publishConfig": {
|
72 | "access": "public"
|
73 | },
|
74 | "gitHead": "c33f74a7025d795ed5e3699a24ceb9a58a4f45f7"
|
75 | }
|