|
| 1 | +{ |
| 2 | + "name": "@dfuse/client", |
| 3 | + "version": "0.2.6", |
| 4 | + "description": "dfuse JavaScript/TypeScript Client Library (for [dfuse API](https://docs.dfuse.io/))", |
| 5 | + "sideEffects": false, |
| 6 | + "main": "dist/lib/index.js", |
| 7 | + "module": "dist/dfuse-client.es5.js", |
| 8 | + "browser": "dist/dfuse-client.umd.js", |
| 9 | + "typings": "dist/types/index.d.ts", |
| 10 | + "files": [ |
| 11 | + "dist/*" |
| 12 | + ], |
| 13 | + "repository": "https://github.com/dfuse-io/client-js", |
| 14 | + "author": { |
| 15 | + "name": "dfuse Developers", |
| 16 | + |
| 17 | + "url": "https://dfuse.io" |
| 18 | + }, |
| 19 | + "contributors": [ |
| 20 | + { |
| 21 | + "name": "Denis Carriere", |
| 22 | + |
| 23 | + "url": "https://eosnation.io" |
| 24 | + } |
| 25 | + ], |
| 26 | + "license": "MIT", |
| 27 | + "scripts": { |
| 28 | + "check": "yarn lint && yarn test && yarn build", |
| 29 | + "prepublishOnly": "yarn build && yarn test", |
| 30 | + "prebuild": "rimraf docs dist", |
| 31 | + "build": "yarn run build:cjs && yarn run build:es && yarn run build:umd && yarn run build:docs", |
| 32 | + "build:cjs": "tsc --module commonjs", |
| 33 | + "build:es": "rollup -c rollup.config.es.js", |
| 34 | + "build:umd": "rollup -c rollup.config.umd.js && node scripts/compress-umd-build.js", |
| 35 | + "build:docs": "typedoc", |
| 36 | + "publish:latest": "yarn publish --public && node scripts/gh-publish-docs.js", |
| 37 | + "publish:next": "yarn publish --public --tag next", |
| 38 | + "postversion": "node scripts/gh-push.js", |
| 39 | + "lint": "tslint 'src/**/*.ts'", |
| 40 | + "lint:specific": "tslint", |
| 41 | + "start": "tsc --module commonjs --watch", |
| 42 | + "run:example": "yarn run ts-node -O '{\"module\":\"commonjs\"}'", |
| 43 | + "test": "jest" |
| 44 | + }, |
| 45 | + "husky": { |
| 46 | + "hooks": { |
| 47 | + "_comment": "Use --no-verify to bypass", |
| 48 | + "pre-commit": "lint-staged && pretty-quick --staged", |
| 49 | + "pre-push": "yarn lint" |
| 50 | + } |
| 51 | + }, |
| 52 | + "lint-staged": { |
| 53 | + "linters": { |
| 54 | + "**/*.ts": [ |
| 55 | + "yarn lint:specific" |
| 56 | + ] |
| 57 | + }, |
| 58 | + "ignore": [ |
| 59 | + "**/*.d.ts" |
| 60 | + ] |
| 61 | + }, |
| 62 | + "devDependencies": { |
| 63 | + "@types/jest": "^23.3.9", |
| 64 | + "@types/node-fetch": "^2.1.6", |
| 65 | + "husky": "^1.1.2", |
| 66 | + "jest": "^24.1.0", |
| 67 | + "lint-staged": "^7.3.0", |
| 68 | + "node-fetch": "^2.3.0", |
| 69 | + "prettier": "^1.14.3", |
| 70 | + "pretty-quick": "^1.8.0", |
| 71 | + "rimraf": "^2.6.3", |
| 72 | + "rollup": "^1.10.0", |
| 73 | + "rollup-plugin-commonjs": "^9.3.4", |
| 74 | + "rollup-plugin-ignore": "^1.0.5", |
| 75 | + "rollup-plugin-json": "^4.0.0", |
| 76 | + "rollup-plugin-node-resolve": "^4.2.3", |
| 77 | + "rollup-plugin-sourcemaps": "^0.4.2", |
| 78 | + "rollup-plugin-terser": "^4.0.4", |
| 79 | + "rollup-plugin-typescript2": "^0.20.1", |
| 80 | + "terser": "^3.17.0", |
| 81 | + "ts-jest": "^24.0.0", |
| 82 | + "ts-node": "^7.0.1", |
| 83 | + "tslint": "^5.11.0", |
| 84 | + "tslint-config-prettier": "^1.15.0", |
| 85 | + "typedoc": "^0.14.2", |
| 86 | + "typedoc-default-themes-extension": "^0.0.3", |
| 87 | + "typedoc-plugin-toc-group": "^0.0.4", |
| 88 | + "typescript": "^3.1.3" |
| 89 | + } |
| 90 | +} |
0 commit comments