-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.46 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
{
"name": "p-killa",
"version": "2.0.7",
"description": "A process killer for windows and linux",
"license": "MIT",
"repository": "ggcaponetto/p-killa",
"main": "dist/global/index.js",
"bin": {
"p-killa": "./dist/global/index.js"
},
"author": {
"name": "Giuseppe Giulio Caponetto",
"email": "[email protected]",
"url": "https://github.com/ggcaponetto"
},
"files": [
"dist",
"scripts",
"src"
],
"scripts": {
"start-dev": "babel-node dist/global/index.js",
"start-prod": "npm run build && node dist/global/index.js",
"build-install-global": "npm run build && npm i -g .",
"auto-build-install": "node ./node_modules/nodemon/bin/nodemon.js --watch src --exec \"npm run build-install-global\"",
"test": "jest --findRelatedTests --runInBand ./test/kill.test.js",
"test:silent": "jest --findRelatedTests --runInBand --silent ./test/index.test.js",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint --fix src",
"docs": "echo no docs needed",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "babel src -d dist",
"preversion": "npm run lint && npm test && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"pk",
"terminate",
"taskkill",
"open",
"port",
"process",
"delay",
"kill",
"node",
"p-killa"
],
"dependencies": {
"chalk": "^2.4.2",
"http-server": "^0.11.1",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/preset-env": "7.3.1",
"babel-eslint": "10.0.1",
"babel-jest": "24.0.0",
"documentation": "9.1.1",
"eslint": "5.12.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-import": "2.15.0",
"eslint-plugin-prettier": "3.0.1",
"husky": "1.3.1",
"jest": "24.0.0",
"lint-staged": "8.1.1",
"nodemon": "^1.18.9",
"opn-cli": "4.0.0",
"prettier": "1.16.1",
"rimraf": "2.6.3",
"standard-changelog": "2.0.6"
}
}