-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.08 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
{
"name": "pattypm",
"description": "A truly cross-platform process manager",
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/pattypm.git"
},
"author": {
"name": "David Rapin",
"url": "https://github.com/davidrapin"
},
"contributors": [
{
"name": "Francesco Infante",
"url": "https://github.com/francescoinfante"
}
],
"keywords": [
"process",
"manager",
"pm",
"patty"
],
"main": "./src/Patty.js",
"license": "MIT",
"version": "1.0.34",
"private": false,
"engines": {
"node": ">=7.5.0"
},
"bin": {
"pattypm": "./bin/client.js",
"pattypm-server": "./bin/server.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"audit": "better-npm-audit audit --level=high --production --registry=https://registry.npmjs.org",
"test:unit": "nyc --reporter=text-summary --reporter=cobertura --report-dir=reports/unit mocha --reporter mocha-multi-reporters --reporter-options configFile=.test-reporters.json ./test",
"lint:ci": "eslint -f checkstyle -o reports/checkstyle.xml src",
"test": "mocha ./test",
"cover": "istanbul cover --root ./ -i '**/*.js' _mocha",
"doc": "jsdoc --configure .jsdoc.json",
"lint": "eslint ./src",
"patch": "npm version patch && git push && npm publish",
"bump:patch": "bump2version patch && npm version --no-git-tag-version patch",
"bump:minor": "bump2version minor && npm version --no-git-tag-version minor",
"bump:major": "bump2version major && npm version --no-git-tag-version major"
},
"dependencies": {
"bluebird": "3.4.7",
"fs-extra": "2.0.0",
"valcheck": "1.0.20",
"blessed": "0.1.81",
"tree-kill": "1.2.2",
"log4js": "6.4.1",
"humanize": "0.0.9"
},
"devDependencies": {
"better-npm-audit": "3.7.3",
"eslint": "3.9.1",
"eslint-plugin-import-order": "2.1.4",
"ink-docstrap": "1.3.2",
"istanbul": "1.1.0-alpha.1",
"jsdoc": "3.6.6",
"mocha": "3.0.2",
"mocha-junit-reporter": "2.0.0",
"mocha-multi-reporters": "1.1.7",
"nyc": "15.1.0",
"should": "11.1.0"
}
}