-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "gulp-ts2php",
"version": "1.2.0",
"description": "ts2php plugin for gulp",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/searchfe/gulp-ts2php.git"
},
"keywords": [
"ts2php"
],
"author": "[email protected]",
"files": [
"dist",
"*.json",
"*.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/searchfe/gulp-ts2php/issues"
},
"homepage": "https://github.com/searchfe/gulp-ts2php#readme",
"dependencies": {
"gulp-util": "^3.0.8",
"through2": "^3.0.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.7",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/node": "^12.0.2",
"semantic-release": "^15.13.24",
"ts2php": "^0.28.4"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}