-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
{
"name": "lockfix",
"version": "2.2.1",
"description": "Smart fix integrity changes of npm lock file",
"license": "MIT",
"author": "Ihor Kopach (https://kopach.dev)",
"homepage": "https://github.com/kopach/lockfix",
"repository": {
"type": "git",
"url": "https://github.com/kopach/lockfix"
},
"bugs": {
"url": "https://github.com/kopach/lockfix/issues"
},
"main": "dist/cli.js",
"bin": "dist/cli.js",
"files": [
"dist/*"
],
"scripts": {
"adr:update": "adr update",
"prebuild": "rimraf dist",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"lint": "tslint --project tsconfig.json src/**/*.ts",
"lint-package.json": "prettier-package-json --write",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"release": "np",
"postshrinkwrap": "lockfix"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "6.2.1",
"execa": "4.1.0",
"shelljs": "0.8.5",
"shortid": "2.2.16"
},
"devDependencies": {
"@types/node": "14.18.54",
"@types/shelljs": "0.8.12",
"@types/shortid": "0.0.29",
"adr": "1.4.5",
"lockfix": "2.2.1",
"np": "7.7.0",
"prettier": "2.8.8",
"prettier-package-json": "2.8.0",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"tslint-clean-code": "0.2.10",
"tslint-config-airbnb": "5.11.2",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"tslint-no-circular-imports": "0.7.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "4.9.5"
},
"keywords": [
"integrity",
"lock",
"lockfile",
"npm",
"npm-shrinkwrap.json",
"package-lock.json",
"shrinkwrap"
]
}