This repository has been archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "watchman-processor",
"version": "3.1.0",
"description": "File synchronizer with a simple dashboard",
"keywords": [
"watchman",
"rsync",
"synchronization",
"file-synchronization",
"file-watcher"
],
"author": "Markis Taylor <m@rkis.cc>",
"main": "index.js",
"bin": "./bin/watchman-processor",
"typings": "index.d.ts",
"preferGlobal": true,
"engines": {
"node": ">=6.0"
},
"files": [
"bin/watchman-processor",
"example/watchman-processor.config.js",
"index.js",
"index.js.map",
"package.json",
"README.md"
],
"dependencies": {
"fb-watchman": "^2.0.1",
"inversify": "^5.1.1",
"reflect-metadata": "^0.1.13",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/sinon": "^10.0.6",
"chai": "^4.3.4",
"if-ver": "^1.1.0",
"in-publish": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2",
"remap-istanbul": "^0.13.0",
"rollup": "^2.59.0",
"rollup-plugin-typescript": "^1.0.1",
"sinon": "^12.0.1",
"ts-helpers": "^1.1.2",
"tslint": "^6.1.3",
"typescript": "^4.4.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": "tslint -c tslint.json src/*.ts test/*.ts",
"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/markis/watchman-processor.git",
"license": "MIT"
}