-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 KB
/
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
42
43
44
{
"name": "fswatcher-child",
"author": "Jasper De Moor",
"license": "MIT",
"version": "1.1.1",
"description": "wrap chokidar's FSWatcher in a child process, so that it is crash free",
"main": "./src/index.js",
"scripts": {
"test": "mocha --timeout 5000 --require ./test/babel-register",
"format": "prettier --write \"**/*.{js,json,md}\"",
"lint": "eslint .",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/DeMoorJasper/fswatcher-child.git"
},
"keywords": [
"chokidar",
"child",
"process",
"fsevents"
],
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"chokidar": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/register": "^7.0.0-beta.51",
"eslint": "^5.6.1",
"fs-extra": "^6.0.1",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"mocha": "^5.1.1",
"prettier": "^1.14.3"
}
}