-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "ensure-wildcard-free-dependencies",
"version": "1.1.5",
"description": "This is a simple tool that ensures your Node.js dependencies are wildcard (^, >, <=, ~, *, etc.) free.",
"keywords": [
"wildcard",
"dependencies",
"devDependencies"
],
"contributors": [
{
"name": "JP Strydom",
"email": "[email protected]"
},
{
"name": "Ryan Kotzen",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JPStrydom/Ensure-Wildcard-Free-Dependencies.git"
},
"bugs": {
"url": "https://github.com/JPStrydom/Ensure-Wildcard-Free-Dependencies/issues"
},
"homepage": "https://github.com/JPStrydom/Ensure-Wildcard-Free-Dependencies#readme",
"main": "index.js",
"bin": {
"ensure-wildcard-free-dependencies": "./index.js"
},
"scripts": {
"start-local": "node index.js ./package.json",
"lint": "prettier --write **/*.js",
"test": "node ./test/index"
},
"dependencies": {
"chalk": "2.4.2"
},
"devDependencies": {
"husky": "2.2.0",
"lint-staged": "8.1.6",
"prettier": "1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.js": [
"npm run start-local",
"npm run lint",
"git add"
]
}
}