-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.85 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "exits",
"version": "2.0.1",
"author": "Rafa Mel",
"description": "Run arbitrary functions & commands asynchronously before process termination, programatically or via CLI",
"keywords": [
"exit",
"cleanup",
"before",
"on",
"node",
"ctrl-c",
"sigint",
"error",
"cli",
"node"
],
"bin": {
"exits": "dist-node/bin/exits.js"
},
"engines": {
"node": ">=8"
},
"esnext": "pkg/dist-src/index.js",
"main": "pkg/dist-node/index.js",
"types": "pkg/dist-types/index.d.ts",
"scripts": {
"start": "kpo start --",
"build": "kpo build --",
"build.pack": "kpo build.pack --",
"commit": "kpo commit --",
"semantic": "kpo semantic --",
"release": "kpo release --",
"watch": "kpo watch --",
"fix": "kpo fix --",
"fix.format": "kpo fix.format --",
"fix.scripts": "kpo fix.scripts --",
"types": "kpo types --",
"lint": "kpo lint --",
"lint.md": "kpo lint.md --",
"lint.scripts": "kpo lint.scripts --",
"test": "kpo test --",
"test.force": "kpo test.force --",
"test.watch": "kpo test.watch --",
"validate": "kpo validate --",
"docs": "kpo docs --",
"changelog": "kpo changelog --",
"update": "kpo update --",
"outdated": "kpo outdated --",
"clean": "kpo clean --",
"clean.top": "kpo clean.top --",
"clean.modules": "kpo clean.modules --",
"prepublishOnly": "kpo prepublishOnly --",
"preversion": "kpo preversion --",
"version": "kpo version --"
},
"license": "MIT",
"homepage": "https://github.com/rafamel/exits",
"repository": {
"type": "git",
"url": "https://github.com/rafamel/exits"
},
"bugs": {
"url": "https://github.com/rafamel/exits/issues"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/common-tags": "^1.8.0",
"@types/jest": "^24.0.13",
"@types/lodash.clonedeep": "^4.5.4",
"@types/loglevel": "^1.5.4",
"@types/pify": "^3.0.2",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"@zerollup/ts-transform-paths": "^1.7.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"commitizen": "^3.1.1",
"conventional-changelog-cli": "^2.0.21",
"conventional-recommended-bump": "^5.0.0",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-restricted-globals": "^0.2.0",
"husky": "^2.3.0",
"jest-cli": "^24.8.0",
"kpo": "^0.9.0",
"markdownlint-cli": "^0.16.0",
"onchange": "^6.0.0",
"prettier": "^1.17.1",
"slimconf": "^0.9.1",
"standard-pkg": "^0.4.1",
"ttypescript": "^1.5.6",
"typedoc": "^0.14.2",
"typescript": "3.4.5"
},
"dependencies": {
"arg": "^4.1.0",
"chalk": "^2.4.2",
"cli-belt": "^0.3.1",
"common-tags": "^1.8.0",
"errorish": "^0.4.0",
"lodash.clonedeep": "^4.5.0",
"loglevel": "^1.6.1",
"npm-run-path": "^3.1.0",
"pify": "^4.0.1",
"promist": "^0.7.0",
"uuid": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "kpo precommit"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}