-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.54 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.54 KB
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
{
"name": "codewind-filewatcher",
"version": "0.11.0",
"description": "File change notification client that recursively monitors project directories and notifies the Codewind server of file changes",
"repository": "https://github.com/eclipse/codewind-filewatchers/",
"license": "EPL-2.0",
"main": "dist/index.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/lib/StandaloneClient.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon dist/lib/StandaloneClient.js",
"compile-ts": "tsc",
"compile-ts-prod": "tsc -d --outDir $TSC_OUTDIR --sourceMap false",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/client.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"package": "./npm-package.sh"
},
"dependencies": {
"chokidar": "~3.3.1",
"got": "^11.8.5",
"ws": "^6.2.1"
},
"devDependencies": {
"@types/node": "^10.12.1",
"@types/ws": "^6.0.2",
"@types/got": "^9.6.9",
"concurrently": "^3.6.1",
"nodemon": "^2.0.2",
"tslint": "^6.1.0",
"typescript": "^3.1.5"
}
}