-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
50 lines (50 loc) · 1.04 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
{
"name": "nsfw",
"version": "2.2.4",
"description": "A simple file watcher for Node",
"main": "js/src/index.js",
"scripts": {
"lint": "eslint js/src js/spec",
"test": "yarn lint && node js/scripts/test.js",
"test:nolint": "node js/scripts/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axosoft/node-simple-file-watcher.git"
},
"author": "Axosoft, LLC",
"types": "index.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/axosoft/node-simple-file-watcher/issues"
},
"engines": {
"node": ">=10.16.0"
},
"files": [
"index.d.ts",
"js/src",
"src",
"includes",
"binding.gyp"
],
"homepage": "https://github.com/axosoft/node-simple-file-watcher",
"dependencies": {
"node-addon-api": "^5.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"executive": "^1.6.3",
"fs-extra": "^7.0.0",
"mocha": "^7.1.1"
},
"keywords": [
"FileWatcher",
"files",
"watch",
"filewatch",
"file",
"inotify",
"fsevents"
]
}