-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.86 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "try-pkg",
"version": "1.2.13",
"description": "Quickly try out npm packages inside a container",
"main": "src/index.js",
"bin": {
"try": "./src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"lint": "eslint src/**/*.js",
"semantic-release": "semantic-release",
"test": "jest --passWithNoTests"
},
"author": {
"email": "[email protected]",
"name": "Livio Brunner",
"url": "https://brunerliv.io"
},
"bugs": {
"url": "https://github.com/BrunnerLivio/try/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/BrunnerLivio/try",
"keywords": [
"docker",
"try",
"npm"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/BrunnerLivio/try"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"cli-spinner": "0.2.10",
"colorette": "^1.1.0",
"commander": "8.0.0",
"dockerode": "3.2.0",
"log-update": "^4.0.0",
"loglevel": "1.7.1",
"node-emoji": "1.10.0",
"uuid": "7.0.3"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-angular": "19.3.0",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/release-notes-generator": "12.1.0",
"@types/jest": "29.5.12",
"commitlint-circle": "1.0.0",
"eslint": "8.57.0",
"eslint-plugin-jest": "27.9.0",
"husky": "9.0.11",
"jest": "29.7.0",
"semantic-release": "19.0.2",
"semantic-release-cli": "5.4.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.js$",
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}