-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
{
"name": "monitorctrlc",
"version": "2.0.1",
"description": "Prevent SIGINT on Ctrl+C",
"license": "MIT",
"main": "index.js",
"repository": "pandell/node-monitorctrlc",
"author": {
"name": "Pandell Technology",
"url": "http://pandell.com/"
},
"contributors": [
{
"name": "Milan Gardian",
"url": "https://github.com/milang"
}
],
"keywords": [
"key",
"keydown",
"tty",
"stdin",
"sigint",
"ctrl+c",
"ctrlc"
],
"engines": {
"node": ">=4"
},
"scripts": {
"clobber": "git -c core.longpaths=true clean -dfX",
"dist": "shx rm -rf build dist/** && shx mkdir -p dist && shx cp -r src dist && tsc --project tsconfig.dist.json && tslint --project tsconfig.json && node .make-package.js",
"lint": "tslint --project tsconfig.json",
"start": "tsc --watch --pretty",
"test": "tsc && mocha --require source-map-support build/test.js"
},
"bugs": {
"url": "https://github.com/pandell/node-monitorctrlc/issues"
},
"homepage": "https://github.com/pandell/node-monitorctrlc",
"readmeFilename": "README.md",
"dependencies": {
"chalk": "^1.1.3"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/mocha": "^2.2.38",
"@types/node": "^4.2.1",
"jslint": "^0.10.3",
"mocha": "^3.2.0",
"shx": "^0.2.2",
"source-map-support": "^0.4.11",
"tslint": "^4.4.2",
"typescript": "^2.1.5"
}
}