forked from Axosoft/nsfw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.47 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@smartface/nsfw-prebuild",
"version": "2.2.2",
"description": "A simple file watcher for Node",
"main": "js/src/index.js",
"access": "public",
"scripts": {
"lint": "eslint js/src js/spec",
"test": "yarn lint && node js/scripts/test.js",
"test:nolint": "node js/scripts/test.js",
"install": "prebuild-install",
"test-gc": "node --expose-gc test/gc.js",
"test-electron": "electron test/electron.js",
"test-prebuild": "cross-env PREBUILDS_ONLY=1 npm t",
"coverage": "nyc report -r lcovonly",
"rebuild": "npm run install --build-from-source",
"prebuild": "prebuildify --napi --strip",
"download-prebuilds": "prebuildify-ci download",
"hallmark": "hallmark --fix",
"prebuild-linux-arm": "prebuildify-cross -i linux-armv6 -i linux-armv7 -i linux-arm64 --napi --strip",
"prebuild-linux-x64": "prebuildify-cross -i centos7-devtoolset7 -i alpine --napi --strip",
"prebuild-darwin-x64+arm64": "prebuildify --napi --strip --arch x64+arm64",
"prebuild-win32-x86": "prebuildify --napi --strip",
"prebuild-win32-x64": "prebuildify --napi --strip"
},
"repository": {
"type": "git",
"url": "https://github.com/smartface/nsfw.git"
},
"author": "Smartface",
"types": "index.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartface/nsfw/issues"
},
"engines": {
"node": ">=10.16.0"
},
"files": [
"index.d.ts",
"js/src",
"src",
"includes",
"binding.gyp",
"binding.js"
],
"homepage": "https://github.com/axosoft/node-simple-file-watcher",
"dependencies": {
"napi-macros": "~2.0.0",
"node-addon-api": "*",
"node-gyp-build": "^4.3.0",
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"async-each": "^1.0.3",
"cross-env": "^7.0.3",
"delayed": "^2.0.0",
"dependency-check": "^4.1.0",
"du": "^1.0.0",
"eslint": "^6.8.0",
"executive": "^1.6.3",
"faucet": "^0.0.1",
"fs-extra": "^7.0.0",
"glob": "^7.1.3",
"hallmark": "^4.0.0",
"level-concat-iterator": "^3.0.0",
"mkfiletree": "^2.0.0",
"mocha": "^7.1.1",
"node-gyp": "^8.4.1",
"nyc": "^15.0.0",
"prebuildify": "^5.0.0",
"prebuildify-ci": "^1.0.4",
"prebuildify-cross": "^5.0.0",
"readfiletree": "^1.0.0",
"rimraf": "^3.0.0",
"standard": "^16.0.3",
"tape": "^5.0.1",
"tempy": "^1.0.1"
},
"keywords": [
"FileWatcher",
"files",
"watch",
"filewatch",
"file",
"inotify",
"fsevents"
]
}