forked from markis/watchman-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
{
"name": "@camporter/watchman-processor",
"version": "3.2.2",
"description": "File synchronizer with a simple dashboard",
"keywords": [
"watchman",
"rsync",
"synchronization",
"file-synchronization",
"file-watcher"
],
"author": "Markis Taylor <[email protected]>",
"main": "index.js",
"bin": "./bin/watchman-processor",
"typings": "index.d.ts",
"preferGlobal": true,
"engines": {
"node": ">=16"
},
"files": [
"bin/watchman-processor",
"example/watchman-processor.config.js",
"index.js",
"index.js.map",
"package.json",
"README.md"
],
"dependencies": {
"fb-watchman": "^2.0.2",
"inversify": "^5.1.1",
"reflect-metadata": "^0.1.13",
"tslib": "^2.4.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^9.0.2",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^18.11.9",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.4",
"eslint": "^8.27.0",
"eslint-plugin-jsdoc": "^39.6.2",
"if-ver": "^1.1.0",
"in-publish": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^9.2.2",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2",
"remap-istanbul": "^0.13.0",
"rollup": "^2.79.1",
"sinon": "^12.0.1",
"typescript": "^4.8.4"
},
"scripts": {
"compile": "rollup -c",
"compile:test": "rollup -c rollup.config.js -e tslib -i test/index.ts -o test.js",
"coverage": "npm run compile:test && istanbul cover _mocha test.js -x example/watchman-processor.config.js --report lcovonly",
"coverage:remap": "npm run coverage && remap-istanbul --type html -i coverage/coverage.json -o coverage/report",
"lint": "eslint src test --fix",
"prepublish": "in-publish && npm run compile || not-in-publish",
"test": "tsc --noemit && npm run lint && npm run coverage:remap",
"test:unit": "mocha mocha built/test/**/*-test.js"
},
"repository": "https://github.com/camporter/watchman-processor.git",
"license": "MIT"
}