-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1003 Bytes
/
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
{
"name": "@jetbrains/icons",
"version": "5.3.0",
"description": "Jetbrains Web UI Icons Library",
"main": "index.js",
"files": [
"*.svg",
"*.js",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JetBrains/icons.git"
},
"homepage": "https://github.com/JetBrains/icons#readme",
"keywords": [
"icons",
"svg",
"jetbrains"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"license": "Apache-2.0",
"devDependencies": {
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^2.1.0",
"standard-version": "^9.0.0",
"svgo": "^3.0.2"
},
"scripts": {
"start": "node example/index.js",
"generate-exports": "node scripts/generate-exports.js",
"build": "svgo -f src -o . && npm run generate-exports",
"commit": "git-cz",
"prerelease:ci": "npm run build",
"release:ci": "standard-version && git push --follow-tags origin master && npm publish"
}
}