-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.49 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
{
"name": "g-status",
"version": "2.0.2",
"description": "Get the change between index (or staging-area) and working directory of a `git` repository",
"license": "MIT",
"repository": "https://github.com/luftywiranda13/g-status",
"author": {
"name": "Lufty Wiranda",
"email": "lufty.wiranda@gmail.com",
"url": "https://www.luftywiranda.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"precommit": "remove-lockfiles && lint-staged",
"test:watch": "jest --watch",
"test": "xo && jest --coverage"
},
"files": [
"index.js"
],
"dependencies": {
"arrify": "^1.0.1",
"matcher": "^1.0.0",
"simple-git": "^1.85.0"
},
"devDependencies": {
"async-to-gen": "^1.3.3",
"husky": "^0.14.3",
"jest": "^22.0.4",
"lint-staged": "^7.0.0",
"remove-lockfiles": "^2.0.4",
"xo": "^0.20.3"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js$": "async-to-gen"
}
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true
},
"xo": {
"envs": [
"jest"
],
"prettier": true,
"rules": {
"camelcase": 0
},
"space": true
},
"keywords": [
"git-status",
"git",
"index-area",
"staged",
"staging-area",
"staging",
"status",
"work-tree",
"working-directory",
"worktree"
]
}