-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "supermon",
"version": "0.1.1",
"description": "Nodemon replacement with node_module sync on Docker use",
"repository": {
"type": "git",
"url": "https://github.com/mikkotikkanen/supermon"
},
"main": "dist/lib/index.js",
"bin": {
"supermon": "./dist/bin/cli.js"
},
"engines": {
"node": ">=8"
},
"keywords": [
"monitor",
"restart",
"development",
"typescript",
"docker"
],
"author": {
"name": "Mikko Tikkanen",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"configstore": "^5.0.1",
"semver": "^7.3.4",
"tree-kill": "^1.2.2",
"update-notifier": "^5.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/configstore": "^4.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"@types/semver": "^7.3.4",
"@types/update-notifier": "^5.0.0",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.8",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.4.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"scripts": {
"dev": "tsc --watch",
"dev-test-server": "ts-node ./src/bin/cli.ts ./dist/test/apps/test-server.js",
"dev-test-lib": "ts-node ./src/bin/cli.ts",
"dev-test-help": "ts-node ./src/bin/cli.ts --help",
"dev-test-version": "ts-node ./src/bin/cli.ts --version",
"test": "npm-run-all test:*",
"test:eslint": "eslint --ext .js,.ts .",
"test:tsc": "tsc --noEmit",
"test:jest": "jest .",
"build": "tsc",
"prepublishOnly": "npm run build",
"release": "semantic-release"
}
}