-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.69 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
{
"name": "scope-tags",
"version": "0.3.8",
"description": "Output human readable test scope report for QA",
"main": "dist/scope.js",
"types": "dist/scope.d.ts",
"files": [
"/dist"
],
"engines": {
"node": ">=18.19.0",
"npm": ">=10.2.3"
},
"scripts": {
"build": "npx tsc",
"local-build": "npm run build && npm link",
"start": "npm run build && scope",
"tag": "npm run build && scope --tag-unpushed-commits",
"test": "jest -i test/* --verbose --silent=false --runInBand",
"clean": "rimraf .scope/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matiduda/scope-tags.git"
},
"keywords": [
"tags",
"testing",
"qa",
"automatic",
"cli"
],
"author": "Mateusz Duda",
"license": "MIT",
"bugs": {
"url": "https://github.com/matiduda/scope-tags/issues"
},
"homepage": "https://github.com/matiduda/scope-tags#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/nodegit": "^0.27.10",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"uuid": "^9.0.1"
},
"dependencies": {
"@types/uuid": "^9.0.8",
"adf-validator": "^0.2.1",
"enquirer": "^2.4.1",
"html-creator": "^0.7.3",
"nodegit": "^0.28.0-alpha.26",
"ts-morph": "^22.0.0",
"node-fetch": "^2.7.0",
"ajv": "^4.11.8",
"better-ajv-errors": "^0.6.7"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1"
},
"bin": {
"scope": "./dist/scope.js"
},
"np": {
"contents": "dist",
"branch": "main"
}
}