-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "question-and-answer",
"version": "1.0.0-alpha.24",
"description": "Library providing command-line question and answer functionality.",
"main": "dist/question-and-answer.js",
"module": "dist/question-and-answer.mjs",
"bin": {
"qna": "dist/question-and-answer-exec.js"
},
"scripts": {
"build": "make build",
"test": "make test",
"preversion": "make qa",
"lint": "make lint",
"lint:fix": "make lint-fix",
"prepack": "make",
"qa": "make qa"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [],
"author": "Zane Rockenbaugh <[email protected]>",
"license": "Apache-2.0",
"repository": {
"url": "git+ssh://[email protected]/liquid-labs/question-and-answer.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/liquid-labs/question-and-answer/issues"
},
"homepage": "https://github.com/liquid-labs/question-and-answer#readme",
"dependencies": {
"@liquid-labs/condition-eval": "^1.0.0-alpha.19",
"cli-columns": "^4.0.0",
"magic-print": "^1.0.0-alpha.18",
"regex-repo": "^5.0.1",
"standard-error-set": "^1.0.0-beta.2",
"string-input": "^1.0.0-alpha.13"
},
"devDependencies": {
"@liquid-labs/sdlc-resource-babel-and-rollup": "^1.0.0-alpha.9",
"@liquid-labs/sdlc-resource-eslint": "^1.0.0-alpha.22",
"@liquid-labs/sdlc-resource-jest": "^1.0.0-alpha.5"
},
"_npm-check-plus": {
"depcheck": {
"ignoreMatches": [
"@liquid-labs/sdlc-resource-*"
]
}
},
"_comply": {
"orgKey": "@liquid-labs"
}
}