-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
105 lines (105 loc) · 2.58 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
101
102
103
104
105
{
"name": "weather_icons",
"version": "0.0.0",
"description": "Flutter library for using erikflowers/weather-icons",
"main": "index.js",
"repository": "https://github.com/worldturtlemedia/weather_icons",
"author": "WorldTurtleMedia <jordon.dehoog@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"commit": "git-cz",
"test": "flutter test",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"format": "flutter format lib test",
"lint": "flutter analyze && npm run format -- --set-exit-if-changed",
"download": "node tool/download_font",
"generate": "node tool/scrape_icons -o ./lib/src",
"sync": "npm run download && npm run generate",
"pub:dry": "flutter pub pub publish --dry-run",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"adm-zip": "^0.5.3",
"commitizen": "4.2.3",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "3.3.0",
"fs-extra": "^9.1.0",
"husky": "5.1.3",
"js-yaml": "^4.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"request": "^2.88.0",
"semantic-release": "19.0.3",
"x-ray": "^2.3.4",
"yargs": "^16.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"{src,test}/**/*.dart": [
"flutter format",
"git add"
],
"tools/**/*.{js,md,json}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": false
},
"renovate": {
"extends": ["config:base"],
"automerge": true,
"baseBranches": ["next"],
"major": {
"automerge": false
}
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "echo Run `./tool/publish.sh ${nextRelease.version}` to publish to pub.dev"
}
],
[
"@semantic-release/github",
{
"assets": [
"CHANGELOG.md",
"example/build/app/outputs/apk/release/app-release.apk"
]
}
],
["@semantic-release/git", {
"assets": ["CHANGELOG.md"]
}]
]
}
}