package.json
 1  {
 2    "name": "fsevents",
 3    "version": "2.3.2",
 4    "description": "Native Access to MacOS FSEvents",
 5    "main": "fsevents.js",
 6    "types": "fsevents.d.ts",
 7    "os": [
 8      "darwin"
 9    ],
10    "files": [
11      "fsevents.d.ts",
12      "fsevents.js",
13      "fsevents.node"
14    ],
15    "engines": {
16      "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
17    },
18    "scripts": {
19      "clean": "node-gyp clean && rm -f fsevents.node",
20      "build": "node-gyp clean && rm -f fsevents.node && node-gyp rebuild && node-gyp clean",
21      "test": "/bin/bash ./test.sh 2>/dev/null",
22      "prepublishOnly": "npm run build"
23    },
24    "repository": {
25      "type": "git",
26      "url": "https://github.com/fsevents/fsevents.git"
27    },
28    "keywords": [
29      "fsevents",
30      "mac"
31    ],
32    "contributors": [
33      {
34        "name": "Philipp Dunkel",
35        "email": "pip@pipobscure.com"
36      },
37      {
38        "name": "Ben Noordhuis",
39        "email": "info@bnoordhuis.nl"
40      },
41      {
42        "name": "Elan Shankar",
43        "email": "elan.shanker@gmail.com"
44      },
45      {
46        "name": "Miroslav Bajtoš",
47        "email": "mbajtoss@gmail.com"
48      },
49      {
50        "name": "Paul Miller",
51        "url": "https://paulmillr.com"
52      }
53    ],
54    "license": "MIT",
55    "bugs": {
56      "url": "https://github.com/fsevents/fsevents/issues"
57    },
58    "homepage": "https://github.com/fsevents/fsevents",
59    "devDependencies": {
60      "node-gyp": "^6.1.0"
61    }
62  }