-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.86 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
{
"name": "gazeall",
"version": "0.13.12",
"description": "Gazeall - The all seeing file watcher and command executor.",
"main": "src/main.ts",
"config": {
"doc_folder": "docs/typedoc"
},
"bin": {
"gazeall": "bin/main.js"
},
"scripts": {
"build": "cross-env NODE_ENV=prod tsc",
"check": "eslint ./src --ext .ts",
"clean": "shx rm -rf bin",
"doc": "typedoc --module commonjs --target ES5 --ignoreCompilerErrors --exclude node_modules --out $npm_package_config_doc_folder src",
"format": "prettier --write \"src/**/*.ts\"",
"node:debug": "node --inspect --debug-brk $npm_package_bin_gazeall",
"prebuild": "run-s format clean unlink",
"postbuild": "npm link",
"precommit": "run-s format",
"predoc": "shx rm -rf $npm_package_config_doc_folder && shx mkdir -p $npm_package_config_doc_folder",
"prepush": "run-s test",
"pretest": "run-s build",
"test": "tape \"bin/**/*/test.*.js\"|tap-summary",
"unlink": "npm unlink -g"
},
"keywords": [
"javascript",
"js",
"npm",
"ts",
"typescript",
"watcher"
],
"author": "Rajinider Yadav <devguy.ca@gmail.com> (https://github.com/rajinder-yadav)",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/rajinder-yadav/gazeall"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^20.12.8",
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"tap-summary": "^4.0.0",
"tape": "^5.7.5",
"tape-run": "^11.0.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^12.0.0",
"gaze": "^1.1.3",
"gazeall": "./gazeall-0.13.12.tgz",
"global": "^4.4.0"
}
}