123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- {
- "_from": "iny-bus@^2.0.0",
- "_id": "iny-bus@2.0.0",
- "_inBundle": false,
- "_integrity": "sha512-wAUo8rP+XEm/W88gPSaSTLfLplxbfvp/b3JAZPt8NLQyyrAANCen5VP6oBXD9f4bo2T3BmX4JWA7o3S8Zv5jng==",
- "_location": "/iny-bus",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "iny-bus@^2.0.0",
- "name": "iny-bus",
- "escapedName": "iny-bus",
- "rawSpec": "^2.0.0",
- "saveSpec": null,
- "fetchSpec": "^2.0.0"
- },
- "_requiredBy": [
- "/"
- ],
- "_resolved": "https://registry.npmmirror.com/iny-bus/-/iny-bus-2.0.0.tgz",
- "_shasum": "744b98558ea2368cacbdffa8efb0ea2971ea180b",
- "_spec": "iny-bus@^2.0.0",
- "_where": "C:\\Users\\q\\MiniProjects\\K8MiniProgramDemo",
- "author": {
- "name": "landluck",
- "email": "landl_ww@163.com"
- },
- "bugs": {
- "url": "https://github.com/landluck/iny-bus/issues"
- },
- "bundleDependencies": false,
- "commitlint": {
- "extends": [
- "@commitlint/config-conventional"
- ]
- },
- "config": {
- "commitizen": {
- "path": "node_modules/cz-conventional-changelog"
- }
- },
- "deprecated": false,
- "description": "<h3 align=\"center\" style=\"margin: 30px 0 35px;\">iny bus 事件中心</h3>",
- "devDependencies": {
- "@commitlint/cli": "^7.1.2",
- "@commitlint/config-conventional": "^7.1.2",
- "@types/jest": "^23.3.2",
- "@types/node": "^10.11.0",
- "codecov": "^3.5.0",
- "colors": "^1.3.2",
- "commitizen": "^3.0.0",
- "cross-env": "^5.2.0",
- "cz-conventional-changelog": "^2.1.0",
- "gh-pages": "^2.1.0",
- "husky": "^1.0.1",
- "jest": "^23.6.0",
- "jest-config": "^23.6.0",
- "lint-staged": "^8.0.0",
- "lodash.camelcase": "^4.3.0",
- "prettier": "^1.14.3",
- "prompt": "^1.0.0",
- "replace-in-file": "^3.4.2",
- "rimraf": "^2.6.2",
- "rollup": "^0.67.0",
- "rollup-plugin-commonjs": "^9.1.8",
- "rollup-plugin-json": "^3.1.0",
- "rollup-plugin-node-resolve": "^3.4.0",
- "rollup-plugin-sourcemaps": "^0.4.2",
- "rollup-plugin-typescript2": "^0.18.0",
- "semantic-release": "^15.9.16",
- "shelljs": "^0.8.3",
- "travis-deploy-once": "^5.0.9",
- "ts-jest": "^23.10.2",
- "ts-node": "^7.0.1",
- "tslint": "^5.11.0",
- "tslint-config-prettier": "^1.15.0",
- "tslint-config-standard": "^8.0.1",
- "typedoc": "^0.12.0",
- "typescript": "^3.0.3"
- },
- "engines": {
- "node": ">=6.0.0"
- },
- "files": [
- "dist"
- ],
- "homepage": "https://github.com/landluck/iny-bus#readme",
- "jest": {
- "transform": {
- ".(ts|tsx)": "ts-jest"
- },
- "testEnvironment": "jsdom",
- "testRegex": "/test/.*\\.(test|spec)\\.(ts)$",
- "moduleFileExtensions": [
- "ts",
- "tsx",
- "js"
- ],
- "coveragePathIgnorePatterns": [
- "/node_modules/",
- "/test/"
- ],
- "coverageThreshold": {
- "global": {
- "branches": 90,
- "functions": 95,
- "lines": 95,
- "statements": 95
- }
- },
- "collectCoverageFrom": [
- "src/*.{js,ts}",
- "src/**/*.{js,ts}"
- ]
- },
- "jsdelivr": "dist/index.js",
- "keywords": [],
- "license": "MIT",
- "lint-staged": {
- "{src}/**/*.ts": [
- "npm run lint",
- "prettier --write",
- "npm run test",
- "git add"
- ]
- },
- "main": "dist/index.js",
- "miniprogram": "dist",
- "module": "dist/index.js",
- "name": "iny-bus",
- "prettier": {
- "semi": false,
- "singleQuote": true
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/landluck/iny-bus.git"
- },
- "scripts": {
- "build": "rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
- "commit": "git-cz",
- "deploy-docs": "gh-pages -d docs --add --git /usr/bin/git",
- "docs": "typedoc --out docs --target es6 --theme minimal --mode file src",
- "lint": "tslint --project tsconfig.json -t codeFrame './src/**/*.ts'",
- "prebuild": "rimraf dist",
- "precommit": "lint-staged",
- "prepub": "npm run test:prod && npm run build",
- "pub": "sh release.sh",
- "pub_docs": "sh release-docs.sh",
- "report-coverage": "codecov ./coverage/clover.xml",
- "semantic-release": "semantic-release",
- "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
- "start": "rollup -c rollup.config.ts -w",
- "test": "jest --coverage",
- "test:prod": "npm run lint && npm run test -- --no-cache",
- "test:watch": "jest --coverage --watch"
- },
- "typings": "dist/index.d.ts",
- "unpkg": "dist/index.js",
- "version": "2.0.0"
- }
|