-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.62 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.62 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@colonise/collection",
"version": "1.1.0",
"description": "A simple Collection library written in TypeScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*.*"
],
"scripts": {
"build": "gulp build",
"lint": "gulp lint",
"test": "gulp test",
"coverage": "gulp coverage",
"debug": "gulp debug",
"pack": "npm pack",
"dist": "gulp distribute"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Colonise/Collection.git"
},
"keywords": [
"typescript",
"collection"
],
"author": "Patrick Stanford",
"license": "MIT",
"bugs": {
"url": "https://github.com/Colonise/Collection/issues"
},
"homepage": "https://github.com/Colonise/Collection#readme",
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.1",
"@semantic-release/github": "^5.0.1",
"@semantic-release/npm": "^5.0.0",
"@types/del": "3.0.1",
"@types/gulp": "4.0.5",
"@types/gulp-istanbul": "^0.9.32",
"@types/merge-stream": "^1.1.2",
"@types/stream-to-promise": "^2.2.0",
"alsatian": "^2.2.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-istanbul": "^1.1.3",
"gulp-merge": "^0.1.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.2",
"merge-stream": "^1.0.1",
"nyc": "^12.0.2",
"semantic-release": "^15.9.1",
"stream-to-promise": "^2.2.0",
"tsgulp": "^1.1.2",
"tslint": "^5.10.0",
"typescript": "^3.1.3"
},
"dependencies": {
"tslib": "^1.9.3"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/**/*.spec.js",
"dist/**/index.js"
],
"reporter": [
"lcov",
"html"
],
"require": [],
"extension": [
".js"
],
"cache": true,
"all": true
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github",
"@semantic-release/npm"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md",
"changelogTitle": "Changelog"
},
"@semantic-release/git",
"@semantic-release/npm"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
],
"success": [
{
"path": "@semantic-release/github",
"successComment": "This ${issue.pull_request ? 'pull request has been included in' : 'issue has been resolved in'} **[release ${nextRelease.gitTag}](https://github.com/Colonise/Collection/releases/tag/${nextRelease.gitTag})**!\\n\\nYou can install the **[npm package](https://www.npmjs.com/package/@colonise/collection)** for ${nextRelease.gitTag} using `npm install @colonise/collection@${nextRelease.version}`\\n\\n_Automatically generated by [semantic-release](https://github.com/semantic-release/semantic-release)._"
}
],
"fail": [
{
"path": "@semantic-release/github",
"failTitle": "The automatic publishing of release ${nextRelease.gitTag} is failing"
}
]
}
}