-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.7 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
{
"name": "execa-output",
"description": "A utility to display command output when using execa with listr.",
"version": "2.0.0",
"author": {
"name": "Michael Novotny",
"email": "manovotny@gmail.com",
"url": "https://manovotny.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manovotny/execa-output.git"
},
"keywords": [
"child",
"command",
"execa",
"listr",
"observable",
"output",
"process",
"task"
],
"engines": {
"node": ">=8.6.0",
"yarn": ">=1.0.0"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"coverage": "jest --coverage",
"lint": "eslint . --ext .json --ext .js",
"prettier": "prettier --write \"**/*.{js,json,md,mdx,yml}\"",
"test": "yarn lint && yarn coverage",
"unit": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,mdx,yml}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@samverschueren/stream-to-observable": "0.3.0",
"rxjs": "6.3.3",
"split": "1.0.1"
},
"devDependencies": {
"chance": "1.0.16",
"chance-object": "1.0.1",
"eslint": "4.19.1",
"eslint-config-get-off-my-lawn": "4.0.1",
"eslint-config-prettier": "3.1.0",
"execa": "1.0.0",
"husky": "1.0.1",
"jest": "23.6.0",
"lint-staged": "7.3.0",
"prettier": "1.14.3"
},
"peerDependencies": {
"execa": "^1.0.0"
},
"jest": {
"coverageDirectory": ".jest-coverage",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}