forked from kiegroup/lock-treatment-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "lock-treatment-tool",
"version": "0.4.2",
"description": "Npm (package-lock-json, npm-shrinkwrap.json) and Yarn lock files treatment tool",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:ginxo/lock-treatment-tool"
},
"keywords": [
"yarn.lock",
"package.json",
"npm-shrinkwrap.json",
"treatment",
"hostname",
"modify",
"registry"
],
"author": "Enrique Mingorance <emingora@redhat.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ginxo/lock-treatment-tool/issues"
},
"homepage": "https://github.com/ginxo/lock-treatment-tool",
"scripts": {
"test": "jest && rimraf '__test__/resources/**/execution-*'",
"lint": "eslint '**/*.js' --ignore-pattern node_modules/",
"lint:fix": "eslint '**/*.js' --ignore-pattern node_modules/ --fix",
"prepublish": "npm test"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm shrinkwrap && git add npm-shrinkwrap.json",
"pre-push": "npm test"
}
},
"bin": {
"locktt": "bin/locktt.js"
},
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"line-reader": "^0.3.0",
"yargs": "^14.2.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"husky": "^3.0.9",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"uuid": "^3.3.3"
}
}