-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 919 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"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"
}