-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 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
{
"name": "bmyc",
"version": "0.5.8",
"description": "Tool to bump assets based on a configuration file",
"engines": {
"node": ">=20.15.0"
},
"bin": {
"bmyc": "build/src/bmyc.js"
},
"scripts": {
"bmyc": "ts-node src/bmyc.ts",
"test": "c8 --check-coverage mocha --recursive build/test/ --extension js",
"mocha": "mocha --require ts-node/register --recursive test --extension ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"files": [
"build/src",
"CHANGELOG.md",
"tsconfig.json",
".eslintrc.json",
".prettierrc.json"
],
"repository": {
"type": "git",
"url": "https://github.com/jgazeau/bmyc.git"
},
"keywords": [
"bmyc",
"bump",
"asset",
"dependencies"
],
"author": "Jordan GAZEAU",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgazeau/bmyc/issues"
},
"homepage": "https://github.com/jgazeau/bmyc#readme",
"dependencies": {
"axios": "^1.6.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"fs-extra": "^11.2.0",
"kleur": "^4.1.5",
"reflect-metadata": "^0.2.2",
"table": "^6.8.2",
"tslog": "^4.9.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/chai-as-promised": "^7.1.8",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/validator": "^13.12.0",
"@types/yargs": "^17.0.31",
"c8": "^8.0.1",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"gts": "^5.3.1",
"mocha": "^10.4.0",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}