forked from codefresh-io/node-docker-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "@swimlane/docker-reference",
"version": "2.0.1",
"description": "A node.js package to parse docker image reference",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/swimlane/node-docker-reference",
"author": "developers <[email protected]>",
"license": "MIT",
"scripts": {
"nifo": "rimraf node_modules && npm run bootstrap",
"bootstrap": "npm ci && npm run prepare",
"prepare": "husky install",
"test": "jest",
"lint": "eslint .",
"depcheck": "depcheck",
"clean": "rimraf ./coverage",
"build": "rimraf lib && tsc"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@types/jest": "29.5.1",
"@types/node": "18.16.12",
"@typescript-eslint/parser": "5.59.6",
"@typescript-eslint/eslint-plugin": "5.59.6",
"depcheck": "1.4.3",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"jest": "29.5.0",
"rimraf": "5.0.1",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
}
}