-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(package.json): release and restructured the package.json (#357)
* ci(package.json): release and restructured the package.json
- Loading branch information
Showing
1 changed file
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,8 @@ | ||
{ | ||
"name": "node-jet", | ||
"version": "3.0.2", | ||
"description": "Jet Realtime Message Bus for the Web. Daemon and Peer implementation.", | ||
"url": "https://github.com/hbm/node-jet", | ||
"keywords": [ | ||
"ipc", | ||
"push", | ||
"message", | ||
"realtime", | ||
"rpc", | ||
"jet", | ||
"json" | ||
], | ||
"author": { | ||
"name": "Florian Schopp", | ||
"email": "[email protected]" | ||
|
@@ -25,6 +17,31 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/HBM/node-jet" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
"ipc", | ||
"push", | ||
"message", | ||
"realtime", | ||
"rpc", | ||
"jet", | ||
"json" | ||
], | ||
"scripts": { | ||
"test": "jest", | ||
"build": "tsc", | ||
"server": "node examples/server", | ||
"ci:eslint": "npm run eslint", | ||
"ci:prettier": "node scripts/cross-var prettier --check $npm_package_config_files ", | ||
"ci:type-check": "tsc --noEmit --skipLibCheck", | ||
"prettier": "node scripts/cross-var prettier --write $npm_package_config_files", | ||
"eslint": "node scripts/cross-var eslint --max-warnings 0 --ignore-path .prettierignore $npm_package_config_files", | ||
"start": "./bin/jetd.js" | ||
}, | ||
"dependencies": { | ||
"events": "^3.3.0", | ||
"jsdoc": "^4.0.0", | ||
|
@@ -52,28 +69,11 @@ | |
"files": [ | ||
"lib" | ||
], | ||
"version": "3.0.1", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/HBM/node-jet" | ||
}, | ||
"license": "MIT", | ||
"config": { | ||
"files": "**/*.{js,jsx,ts,tsx,json,html,yml}" | ||
}, | ||
"scripts": { | ||
"test": "jest", | ||
"build": "tsc", | ||
"server": "node examples/server", | ||
"ci:eslint": "npm run eslint", | ||
"ci:prettier": "node scripts/cross-var prettier --check $npm_package_config_files ", | ||
"ci:type-check": "tsc --noEmit --skipLibCheck", | ||
"prettier": "node scripts/cross-var prettier --write $npm_package_config_files", | ||
"eslint": "node scripts/cross-var eslint --max-warnings 0 --ignore-path .prettierignore $npm_package_config_files", | ||
"start": "./bin/jetd.js" | ||
}, | ||
"engines": { | ||
"node": ">0.8.0" | ||
"node": ">6.14.18" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/HBM/node-jet/issues", | ||
|