mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-19 19:39:51 +08:00
41 lines
919 B
JSON
41 lines
919 B
JSON
{
|
|
"name": "sync-rpc",
|
|
"version": "1.3.6",
|
|
"main": "lib/index.js",
|
|
"description": "Run asynchronous commands synchronously by putting them in a separate process",
|
|
"keywords": [],
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"dependencies": {
|
|
"get-port": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "*",
|
|
"jest": "*",
|
|
"lint-staged": "*",
|
|
"prettier": "*"
|
|
},
|
|
"scripts": {
|
|
"precommit": "lint-staged",
|
|
"prettier": "prettier --write \"lib/**/*.js\"",
|
|
"prettier:check": "prettier --list-different \"lib/**/*.js\"",
|
|
"test": "jest --coverage",
|
|
"watch": "jest --coverage --watch"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ForbesLindesay/sync-rpc.git"
|
|
},
|
|
"author": {
|
|
"name": "Forbes Lindesay",
|
|
"url": "http://github.com/ForbesLindesay"
|
|
},
|
|
"license": "MIT"
|
|
} |