-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.83 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
{
"name": "@iteratec/semantic-release-bitbucket",
"version": "1.0.0-semantically-released",
"description": "a semantic-release plugin for bitbucket",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc",
"postbuild": "cpx package.json dist/ && cpx package-lock.json dist/",
"commit": "git-cz",
"semantic-release": "semantic-release",
"test": "mocha -r chai -r chai-as-promised -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iteratec/semantic-release-bitbucket.git"
},
"keywords": [
"semantic-release",
"semver",
"bitbucket"
],
"author": "Christoph Murczek <christoph.murczek@iteratec.at>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iteratec/semantic-release-bitbucket/issues"
},
"homepage": "https://github.com/iteratec/semantic-release-bitbucket#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"btoa": "^1.2.1",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@types/btoa": "^1.2.0",
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.2",
"@types/node-fetch": "^1.6.9",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"commitizen": "^2.9.6",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.4",
"keytar": "^4.2.1",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.5.0",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test",
"commit-msg": "commitlint -e"
}
}
}