-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.66 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.66 KB
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": "remove-lockfiles",
"version": "2.1.3",
"description": "Prevent committing lockfiles",
"license": "MIT",
"repository": "https://github.com/luftywiranda13/remove-lockfiles",
"author": {
"name": "Lufty Wiranda",
"email": "lufty.wiranda@gmail.com",
"url": "https://www.luftywiranda.com"
},
"engines": {
"node": ">=6"
},
"husky": {
"hooks": {
"pre-commit": "node cli.js && lint-staged"
}
},
"scripts": {
"test:watch": "jest --watch",
"test": "xo && jest --coverage"
},
"bin": "cli.js",
"files": [
"cli.js",
"index.js"
],
"dependencies": {
"chalk": "^2.3.0",
"force-del": "^2.0.0",
"has-lockfile": "^4.0.0",
"log-symbols": "^2.1.0",
"meow": "^5.0.0",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"async-to-gen": "^1.3.3",
"execa": "^1.0.0",
"fixturez": "^1.1.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"xo": "^0.23.0"
},
"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,
"trailingComma": "es5"
},
"xo": {
"envs": [
"jest"
],
"prettier": true,
"space": true
},
"keywords": [
"git",
"git-hooks",
"hooks",
"pre-commit",
"npm",
"yarn",
"developer-experience",
"workflow",
"commit",
"cli",
"cli-app",
"lockfile",
"package-lock",
"yarn.lock",
"cross-platform"
]
}