-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
59 lines (59 loc) · 1.39 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sane",
"version": "5.0.1",
"description": "Sane aims to be fast, small, and reliable file system watcher.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/amasad/sane"
},
"files": [
"src",
"index.js"
],
"scripts": {
"test": "npm run format && eslint src/ test/ index.js && mocha --bail test/test.js && mocha --bail test/utils-test.js && mocha --bail 'test/watchexec_*-test.js'",
"test:debug": "mocha debug --bail",
"format": "prettier --trailing-comma es5 --single-quote --write index.js 'src/**/*.js' 'test/**/*.js'"
},
"bin": "./src/cli.js",
"keywords": [
"watch",
"file",
"fswatcher",
"watchfile",
"fs",
"watching"
],
"author": "amasad",
"license": "MIT",
"dependencies": {
"@cnakazawa/watch": "^1.0.3",
"anymatch": "^3.1.1",
"capture-exit": "^2.0.0",
"exec-sh": "^0.3.4",
"execa": "^4.0.0",
"fb-watchman": "^2.0.1",
"micromatch": "^4.0.2",
"minimist": "^1.1.1",
"walker": "~1.0.5"
},
"devDependencies": {
"eslint": "^6.8.0",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"rimraf": "~3.0.0",
"tmp": "0.1.0"
},
"engines": {
"node": "10.* || >= 12.*"
},
"bugs": {
"url": "https://github.com/amasad/sane/issues"
},
"homepage": "https://github.com/amasad/sane",
"volta": {
"node": "12.16.1",
"yarn": "1.22.4"
}
}