-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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
{
"name": "core-commons",
"version": "1.0.0",
"description": "Lifion's development setup in one command for public Node.js projects.",
"author": "Edgardo Avilés-López <[email protected]>",
"maintainers": [
"Anson Lam <[email protected]>",
"Edgardo Avilés-López <[email protected]>",
"Jenny Eckstein <[email protected]>"
],
"contributors": [],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lifion/core-commons.git"
},
"bugs": {
"url": "https://github.com/lifion/core-commons/issues"
},
"homepage": "https://github.com/lifion/core-commons#readme",
"main": "bin/cli.js",
"bin": {
"commons": "./bin/cli.js"
},
"files": [
"CODE_OF_CONDUCT.md",
"LICENSE",
"lib",
"shared",
"!**/*.test.js"
],
"engines": {
"node": ">=14.19.1"
},
"scripts": {
"build-docs": "node ./bin/cli.js",
"build-types": "node ./bin/cli.js",
"check-types": "node ./bin/cli.js",
"clean-types": "node ./bin/cli.js",
"eslint": "node ./bin/cli.js",
"prepare": "node ./bin/cli.js",
"prepublishOnly": "npm run build-types && npm run prettier",
"prettier": "node ./bin/cli.js",
"test": "node ./bin/cli.js",
"version": "node ./bin/cli.js"
},
"dependencies": {
"@tsconfig/node14": "^1.0.3",
"auto-changelog": "^2.4.0",
"chalk": "^5.2.0",
"check-engines": "^1.6.0",
"cosmiconfig": "^8.1.0",
"env-var": "^7.3.0",
"eslint": "^8.35.0",
"eslint-config-lifion": "^3.0.2",
"jest": "^29.4.3",
"jsdoc-to-markdown": "^8.0.0",
"merge-options": "^3.0.4",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"yargs": "^17.7.1",
"zx": "^7.2.0"
},
"core-commons": {
"test": {
"coverageThreshold": {
"global": {
"statements": 0,
"branches": 0,
"functions": 0,
"lines": 0
}
}
}
}
}