UNPKG

1.43 kBJSONView Raw
1{
2 "name": "sane",
3 "version": "5.0.1",
4 "description": "Sane aims to be fast, small, and reliable file system watcher.",
5 "main": "index.js",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/amasad/sane"
9 },
10 "files": [
11 "src",
12 "index.js"
13 ],
14 "scripts": {
15 "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'",
16 "test:debug": "mocha debug --bail",
17 "format": "prettier --trailing-comma es5 --single-quote --write index.js 'src/**/*.js' 'test/**/*.js'"
18 },
19 "bin": "./src/cli.js",
20 "keywords": [
21 "watch",
22 "file",
23 "fswatcher",
24 "watchfile",
25 "fs",
26 "watching"
27 ],
28 "author": "amasad",
29 "license": "MIT",
30 "dependencies": {
31 "@cnakazawa/watch": "^1.0.3",
32 "anymatch": "^3.1.1",
33 "capture-exit": "^2.0.0",
34 "exec-sh": "^0.3.4",
35 "execa": "^4.0.0",
36 "fb-watchman": "^2.0.1",
37 "micromatch": "^4.0.2",
38 "minimist": "^1.1.1",
39 "walker": "~1.0.5"
40 },
41 "devDependencies": {
42 "eslint": "^6.8.0",
43 "mocha": "^6.2.2",
44 "prettier": "^1.19.1",
45 "rimraf": "~3.0.0",
46 "tmp": "0.1.0"
47 },
48 "engines": {
49 "node": "10.* || >= 12.*"
50 },
51 "bugs": {
52 "url": "https://github.com/amasad/sane/issues"
53 },
54 "homepage": "https://github.com/amasad/sane",
55 "volta": {
56 "node": "12.16.1",
57 "yarn": "1.22.4"
58 }
59}