This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
112 lines (112 loc) · 2.92 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
{
"name": "@cerner/svg-to-carbon",
"description": "Converter for Cerner icons to JSON format for Carbon",
"version": "1.1.3",
"author": "Cerner Corporation",
"bugs": "https://github.com/cerner/svg-to-carbon/issues",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-case": [
0,
"always",
"start-case"
],
"type-enum": [
2,
"always",
[
"Fix",
"Chore",
"New",
"Docs",
"Breaking",
"Upgrade",
"Update",
"Build",
"Revert"
]
],
"subject-case": [
0,
"always",
"start-case"
]
}
},
"dependencies": {
"glob": "^7.1.6",
"ramda": "^0.27.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/git": "^9.0.0",
"conventional-changelog-eslint": "^3.0.4",
"eslint": "^6.8.0",
"eslint-plugin-ideal": "^0.1.3",
"husky": "^4.2.1",
"jest": "^25.1.0",
"prettier": "^2.0.0",
"semantic-release": "^17.0.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"src",
"README.md"
],
"homepage": "https://github.com/cerner/svg-to-carbon/",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"carbon-graphs",
"svg-to-carbon"
],
"license": "Apache-2.0",
"main": "index.js",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"semi": true,
"tabWidth": 4,
"trailingComma": "none"
},
"greenkeeper": {
"commitMessages": {
"initialBadge": "Docs: Add Greenkeeper badge",
"initialDependencies": "Upgrade: Update dependencies",
"initialBranches": "Build: Whitelist Greenkeeper branches",
"dependencyUpdate": "Upgrade: Update ${dependency} to version ${version}",
"devDependencyUpdate": "Upgrade: Update ${dependency} to version ${version}",
"dependencyPin": "Fix: Pin ${dependency} to ${oldVersion}",
"devDependencyPin": "Fix: Pin ${dependency} to ${oldVersion}"
},
"prTitles": {
"initialPR": "Upgrade: Update dependencies to enable Greenkeeper [skip ci]",
"initialPrBadge": "Chore: Add badge to enable Greenkeeper [skip ci]",
"initialPrBadgeOnly": "Chore: Add Greenkeeper badge [skip ci]",
"initialSubgroupPR": "Upgrade: Update dependencies for ${group} [skip ci]",
"basicPR": "Upgrade: Update ${dependency} to the latest [skip ci]",
"groupPR": "Upgrade: Update ${dependency} in group ${group} to the latest [skip ci]"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cerner/svg-to-carbon.git"
},
"scripts": {
"lint": "eslint src index.js --color --max-warnings 0",
"test": "jest --coverage"
}
}