-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.81 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "octicons-webfont",
"version": "1.5.0",
"description": "An unofficial web-font port of Octicons",
"scripts": {
"commit": "git-cz",
"lint:eslint:ci": "eslint . --ignore-path .gitignore --format junit --output-file ./reports/eslint/junit.xml",
"lint:eslint:local": "eslint . --ignore-path .gitignore",
"lint:eslint": "if-ci npm run lint:eslint:ci && if-not-ci npm run lint:eslint:local",
"lint:commitlint": "commitlint -t HEAD",
"lint": "npm-run-all --parallel lint:eslint lint:commitlint",
"test:mocha:ci": "mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/mocha/junit.xml",
"test:mocha:local": "mocha",
"test:mocha": "if-ci npm run test:mocha:ci && if-not-ci npm run test:mocha:local",
"test": "npm-run-all --parallel test:*",
"build": "grunt build",
"semantic-release": "semantic-release"
},
"repository": "github:zypA13510/octicons-webfont",
"keywords": [
"octicons",
"icons",
"font",
"web font",
"icon font"
],
"author": "Yuping Zuo (https://github.com/zypA13510)",
"contributors": [
"GitHub Inc. (https://octicons.github.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zypA13510/octicons-webfont/issues"
},
"homepage": "https://github.com/zypA13510/octicons-webfont#readme",
"dependencies": {
"@primer/octicons": "9.6.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/prompt": "^8.3.5",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"autoprefixer": "^9.7.4",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"commitlint": "^8.3.5",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"eslint": "^6.8.0",
"fontkit": "^1.8.0",
"glob": "^7.1.6",
"grunt": "^1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.6.0",
"grunt-exec": "^3.0.0",
"grunt-postcss": "^0.9.0",
"grunt-webfont": "~1.5.0",
"if-ci": "^3.0.0",
"js-yaml": "^3.13.1",
"load-grunt-config": "^3.0.1",
"mocha": "^7.1.0",
"mocha-junit-reporter": "^1.23.3",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.0.4"
},
"bundledDependencies": [
"@primer/octicons"
],
"files": [
"build/**/*",
"package.json",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"browserslist": "defaults",
"greenkeeper": {
"commitMessages": {
"dependencyUpdate": "fix(deps): update dependency\n\nupdate ${dependency} to ${version}",
"devDependencyUpdate": "build(deps): update devDependency\n\nupdate ${dependency} to ${version}",
"lockfileUpdate": "build(deps): update lockfile ${lockfilePath}",
"dependencyPin": "fix(deps): pin dependency version\n\npin ${dependency} to ${oldVersion}",
"devDependencyPin": "build(deps): pin devDependency version\n\npin ${dependency} to ${oldVersion}"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# CHANGELOG"
}
],
[
"@semantic-release/npm",
{
"tarballDir": "dist"
}
],
"@semantic-release/git",
[
"@semantic-release/exec",
{
"generateNotesCmd": "node tasks/print-version.js",
"prepareCmd": "npx grunt release --releaseversion=${nextRelease.version}"
}
],
[
"@semantic-release/github",
{
"assets": "dist/*.zip"
}
]
]
}
}