-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "grcrt",
"version": "0.0.0-development",
"description": "GRCRTools",
"main": "GrepolisReportConverterV2.user.js",
"author": "Potusek, anpu",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/grcrt/grcrt-script#README.md",
"repository": {
"type": "git",
"url": "https://github.com/grcrt/grcrt-script.git"
},
"bugs": {
"url": "https://github.com/grcrt/grcrt-script/issues"
},
"grcrtdata": {
"name": "Grepolis Report Converter",
"host": "www.grcrt.net",
"file": "GrepolisReportConverterV2"
},
"dependencies": {
"google-closure-compiler": "^20200830.0.0"
},
"devDependencies": {
"semantic-release": "^17.0.0"
},
"scripts": {
"test": "google-closure-compiler --js=tmp/GrepolisReportConverterV2.user.js --language_in ECMASCRIPT5 --formatting pretty_print --js_output_file=tmp/_GrepolisReportConverterV2.user.js",
"build": "node bin/build.js",
"dist": "node bin/dist.js",
"semantic-release": "semantic-release"
},
"release": {
"npmPublish": false,
"assets": [
"dist/*.js"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
{
"path": "@semantic-release/git",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
"assets": [
"CHANGELOG.md"
]
},
"@semantic-release/npm",
{
"path": "@semantic-release/exec",
"cmd": "npm run dist"
}
]
}
}