| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "sane",
- "version": "2.5.2",
- "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",
- "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": {
- "anymatch": "^2.0.0",
- "capture-exit": "^1.2.0",
- "exec-sh": "^0.2.0",
- "fb-watchman": "^2.0.0",
- "micromatch": "^3.1.4",
- "minimist": "^1.1.1",
- "walker": "~1.0.5",
- "watch": "~0.18.0"
- },
- "devDependencies": {
- "eslint": "^3.19.0",
- "mocha": "~1.17.1",
- "prettier": "^1.3.1",
- "rimraf": "~2.2.6",
- "tmp": "0.0.27"
- },
- "engines": {
- "node": ">=0.6.0"
- },
- "bugs": {
- "url": "https://github.com/amasad/sane/issues"
- },
- "homepage": "https://github.com/amasad/sane",
- "optionalDependencies": {
- "fsevents": "^1.2.3"
- }
- }
|