-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.97 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "entro-ci",
"description": "An automated CI tool to help with building packages and ignoring them when there wasn't a change.",
"version": "4.4.0",
"author": "Kerren @Kerren-Entrostat",
"bin": {
"entro-ci": "./bin/run"
},
"bugs": "https://github.com/entrostat/entro-ci/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cli-ux": "^5.6.3",
"fs-extra": "^10.0.0",
"got": "^11.8.2",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"reflect-metadata": "^0.1.13",
"tslib": "^2.3.1",
"tsyringe": "^4.6.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.2.22",
"@types/fs-extra": "^9.0.13",
"@types/handlebars": "^4.1.0",
"@types/js-yaml": "^4.0.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@types/validator": "^13.7.3",
"chai": "^4.3.4",
"entro-version": "^1.5.0",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"globby": "^10.0.2",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/entrostat/entro-ci",
"keywords": [
"oclif",
"templates",
"templating",
"ci",
"cd",
"automation",
"versioning",
"version",
"kubernetes",
"orchestration",
"docker",
"trigger",
"hash",
"directory",
"build",
"actions",
"github"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "entro-ci",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "entrostat/entro-ci",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"release": "entro-version --during-release-post-hook=\"npm run prepack && git commit -am 'Updated the readme'\"",
"release:major": "entro-version --standard-version-flags=\"--release-as=major\" --during-release-post-hook=\"npm run prepack && git commit -am 'Updated the readme'\""
},
"types": "lib/index.d.ts"
}