chatkitty
Advanced tools
Comparing version 2.0.0-beta.0 to 2.0.0
123
package.json
{ | ||
"name": "chatkitty", | ||
"version": "2.0.0-beta.0", | ||
"description": "Build chat in minutes with ChatKitty's real-time messaging framework.", | ||
"main": "build/main/index.js", | ||
"typings": "build/main/index.d.ts", | ||
"repository": "https://github.com/ChatKitty/chatkitty-js", | ||
"version": "2.0.0", | ||
"description": "ChatKitty is the first complete chat platform for your mobile and web apps. ChatKitty provides chat features that are easy to add to your new or existing app without having to build ui or a backend.", | ||
"license": "MIT", | ||
"keywords": [ | ||
"chat", | ||
"messaging", | ||
"conversation", | ||
"react", | ||
"chatkitty", | ||
"chatkitty.com" | ||
], | ||
"scripts": { | ||
"build": "run-p build:*", | ||
"build:main": "genversion --es6 src/environment/version.ts && tsc -p tsconfig.json", | ||
"fix": "run-s fix:*", | ||
"fix:prettier": "prettier \"src/**/*.ts\" --write", | ||
"fix:lint": "eslint src --ext .ts --fix", | ||
"test": "run-s build test:*", | ||
"test:lint": "eslint src --ext .ts", | ||
"test:prettier": "prettier \"src/**/*.ts\" --list-different", | ||
"test:unit": "nyc ava src/tests/*.ts --verbose", | ||
"check-cli": "run-s src/tests diff-integration-tests check-integration-tests", | ||
"check-integration-tests": "run-s check-integration-test:*", | ||
"diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r src/tests diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\\\\\\\n\\\\\\\\nCommitted most recent integration test output in the \\\\\\\"diff\\\\\\\" directory. Review the changes with \\\\\\\"cd diff && git diff HEAD\\\\\\\" or your preferred git diff viewer.'", | ||
"watch:build": "tsc -p tsconfig.json -w", | ||
"watch:test": "nyc --silent ava --watch", | ||
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html", | ||
"cov:html": "nyc report --reporter=html", | ||
"cov:lcov": "nyc report --reporter=lcov", | ||
"cov:send": "run-s cov:lcov && codecov", | ||
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100", | ||
"doc": "run-s doc:html && open-cli build/docs/index.html", | ||
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs", | ||
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json", | ||
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs", | ||
"version": "standard-version", | ||
"reset-hard": "git clean -dfx && git reset --hard && npm i", | ||
"prepare-release": "run-s reset-hard src/tests cov:check doc:html version doc:publish" | ||
}, | ||
"engines": { | ||
"node": ">=10" | ||
}, | ||
"dependencies": { | ||
"@stomp/rx-stomp": "^1.1.2", | ||
"axios": "^0.21.1", | ||
"rxjs": "^6.6.7", | ||
"sockjs-client": "^1.5.1", | ||
"text-encoding": "^0.7.0" | ||
}, | ||
"devDependencies": { | ||
"@ava/typescript": "^1.1.1", | ||
"@istanbuljs/nyc-config-typescript": "^1.0.1", | ||
"@types/sockjs-client": "^1.5.0", | ||
"@types/text-encoding": "0.0.35", | ||
"@types/uuid": "^8.3.0", | ||
"@typescript-eslint/eslint-plugin": "^4.22.1", | ||
"@typescript-eslint/parser": "^4.22.1", | ||
"ava": "^3.15.0", | ||
"codecov": "^3.8.2", | ||
"cspell": "^4.2.8", | ||
"eslint": "^7.25.0", | ||
"eslint-config-prettier": "^6.15.0", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-import": "^2.22.0", | ||
"genversion": "^2.3.1", | ||
"gh-pages": "^3.1.0", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.1.0", | ||
"open-cli": "^6.0.1", | ||
"prettier": "^2.2.1", | ||
"standard-version": "^9.3.0", | ||
"ts-node": "^9.1.1", | ||
"typedoc": "^0.20.36", | ||
"typedoc-plugin-extras": "^1.1.7", | ||
"typescript": "^4.2.4" | ||
}, | ||
"files": [ | ||
"build/main", | ||
"!**/*.spec.*", | ||
"!**/*.json", | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"README.md" | ||
"dist" | ||
], | ||
"ava": { | ||
"failFast": true, | ||
"timeout": "60s", | ||
"typescript": { | ||
"rewritePaths": { | ||
"src/": "build/main/" | ||
} | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"require": [ | ||
"ws" | ||
] | ||
"./esm": "./dist/index.mjs", | ||
"./cjs": "./dist/index.js", | ||
"./package.json": "./package.json" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "cz-conventional-changelog" | ||
} | ||
}, | ||
"prettier": { | ||
"singleQuote": true | ||
}, | ||
"nyc": { | ||
"extends": "@istanbuljs/nyc-config-typescript", | ||
"exclude": [ | ||
"**/*.spec.js" | ||
] | ||
"devDependencies": { | ||
"lit-html": "^2.7.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
408201
0
1
0
6
1909
2
0
3
1
- Removed@stomp/rx-stomp@^1.1.2
- Removedaxios@^0.21.1
- Removedrxjs@^6.6.7
- Removedsockjs-client@^1.5.1
- Removedtext-encoding@^0.7.0
- Removed@stomp/rx-stomp@1.2.0(transitive)
- Removed@stomp/stompjs@6.1.2(transitive)
- Removedangular2-uuid@1.1.1(transitive)
- Removedaxios@0.21.4(transitive)
- Removeddebug@3.2.7(transitive)
- Removedeventsource@2.0.2(transitive)
- Removedfaye-websocket@0.11.4(transitive)
- Removedfollow-redirects@1.15.9(transitive)
- Removedhttp-parser-js@0.5.8(transitive)
- Removedinherits@2.0.4(transitive)
- Removedms@2.1.3(transitive)
- Removedquerystringify@2.2.0(transitive)
- Removedrequires-port@1.0.0(transitive)
- Removedrxjs@6.6.7(transitive)
- Removedsafe-buffer@5.2.1(transitive)
- Removedsockjs-client@1.6.1(transitive)
- Removedtext-encoding@0.7.0(transitive)
- Removedtslib@1.14.1(transitive)
- Removedurl-parse@1.5.10(transitive)
- Removedwebsocket-driver@0.7.4(transitive)
- Removedwebsocket-extensions@0.1.4(transitive)