-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.23 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@pobuca/xsc",
"description": "A cli tool with common git command sets.",
"version": "1.24.0",
"license": "MPL-2.0",
"readme": "README.md",
"contributors": [
"Kosmas Papadatos <[email protected]> (https://github.com/kpapadatos)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pobuca/xsc.git"
},
"bin": {
"xcommit": "./bin/xcommit.js",
"xfeature": "./bin/xfeature.js",
"xrelease": "./bin/xrelease.js",
"xhotfix": "./bin/xhotfix.js",
"xsc": "./bin/xsc.js"
},
"scripts": {
"dev": "npm link && concurrently -r npm:build:watch npm:test:watch",
"test:log": "mocha --reporter spec",
"test": "nyc mocha",
"test:watch": "nyc mocha --reporter spec --watch-extensions ts --watch \"src/**/*.test.ts\"",
"build": "tsc",
"build:watch": "tsc -w",
"setSonarqubeVersion": "ts-node scripts/setSonarqubeVersion"
},
"dependencies": {
"@types/eventemitter2": "^4.1.0",
"@types/semver": "^6.2.0",
"chalk": "^2.4.2",
"eventemitter2": "^5.0.1",
"gulp": "^4.0.2",
"semver": "^6.3.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.4",
"@types/chalk": "^2.2.0",
"@types/del": "^4.0.0",
"@types/gulp": "^4.0.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"chai": "^4.2.0",
"concurrently": "^5.0.0",
"del": "^5.1.0",
"mocha": "^6.2.2",
"mocha-junit-reporter": "^1.23.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"bugs": {
"url": "https://github.com/pobuca/xsc/issues"
},
"homepage": "https://github.com/pobuca/xsc#readme",
"main": "bin/xcommit.js",
"keywords": [
"git",
"flow",
"git-flow",
"pobuca",
"workflow",
"xsc"
],
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"reporter": [
"text-summary",
"cobertura",
"lcov"
],
"all": true,
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"plugins": [],
"sourceMap": true,
"instrument": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
]
},
"author": {
"email": "[email protected]",
"name": "Kosmas Papadatos",
"url": "https://github.com/kpapadatos"
}
}