-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.17 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.17 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
{
"name": "docker-snapshot-image",
"description": "A cli tool for creating a docker snapshot image of a node project",
"version": "0.0.0-semantic-release",
"engines": {
"node": ">=12.22.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hellivan/docker-snapshot-image.git"
},
"main": "./dist/lib/index.js",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.build.json",
"check-dependencies": "dependency-check package.json --missing --no-dev",
"check-formatting": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint ./src --ext .ts",
"lint:ci": "eslint ./src --ext .ts --format junit -o reports/junit/eslint.xml",
"semantic-release": "semantic-release",
"start:bin": "node dist/bin/docker-snapshot-image.js",
"test": "jest",
"test:ci": "jest --coverage",
"cleanup-lockfile": "yarn-deduplicate --strategy fewer"
},
"dependencies": {
"axios": "^0.26.0",
"commander": "^9.0.0"
},
"bin": {
"docker-snapshot-image": "./dist/bin/docker-snapshot-image.js"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^27.4.0",
"@types/node": "12.20.42",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"condition-circle": "^2.0.2",
"dependency-check": "^4.1.0",
"eslint": "^8.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.4.7",
"jest-circus": "^27.4.6",
"jest-html-reporter": "^3.4.2",
"jest-junit": "^13.0.0",
"nock": "^13.2.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.6",
"ts-jest": "^27.1.3",
"typescript": "~4.5.5",
"yarn-deduplicate": "^3.1.0"
}
}