This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 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
69
70
71
72
73
74
75
76
77
78
{
"name": "nodehawk",
"version": "0.0.7",
"description": "A slim and hyper configurable watcher for Node.",
"author": "Samrith Shankar <[email protected]>",
"license": "MIT",
"homepage": "https://nodehawk.js.org/",
"repository": "[email protected]:samrith-s/nodehawk.git",
"preferGlobal": true,
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"bin": {
"nodehawk": "./bin/nodehawk.js"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"bin",
"lib",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [
"javascript",
"typescript",
"express",
"watcher",
"nodemon",
"nodehawk",
"reload"
],
"scripts": {
"try": "node ./bin/nodehawk",
"prepublishOnly": "yarn build",
"start": "rimraf lib/ && tsc -w",
"create": "yarn build && yarn test",
"build": "rimraf lib/ && tsc -p .",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"coverage": "nyc --reporter=lcovonly yarn test",
"refresh": "rimraf ./node_modules ./yarn.lock && yarn install",
"lint": "eslint src/**/*.ts",
"docs:generate": "typedoc ./src && cp CNAME docs/CNAME",
"docs:serve": "live-server ./docs"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"all-contributors-cli": "^6.13.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-prettier": "^3.1.2",
"live-server": "^1.2.1",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typedoc": "^0.16.9",
"typescript": "^3.7.4"
},
"dependencies": {
"chokidar": "^3.3.1",
"cli-cursor": "^3.1.0",
"flat": "^5.0.0",
"kill-port": "^1.6.0",
"ora": "^4.0.3",
"rc": "^1.2.8"
}
}