-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.42 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.42 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
{
"name": "has-lockfile",
"version": "4.0.0",
"description": "Detect lockfiles in the working directory",
"license": "MIT",
"repository": "https://github.com/luftywiranda13/has-lockfile",
"author": {
"name": "Lufty Wiranda",
"email": "lufty.wiranda@gmail.com",
"url": "https://www.luftywiranda.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"precommit": "remove-lockfiles && lint-staged",
"pretest": "remove-lockfiles",
"test:watch": "jest --watch",
"test": "xo && jest --coverage"
},
"files": [
"index.js"
],
"dependencies": {
"has-package-lock": "^2.0.0",
"has-shrinkwrap": "^1.0.0",
"has-yarn": "^1.0.0"
},
"devDependencies": {
"eslint-config-prettier": "^2.9.0",
"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"
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true
},
"xo": {
"envs": [
"jest"
],
"prettier": true,
"space": true
},
"keywords": [
"yarn",
"lockfile",
"lock file",
"package-lock",
"has",
"detect",
"is",
"project",
"app",
"module",
"package",
"manager",
"npm"
]
}