|
1 | 1 | {
|
2 | 2 | "name": "carbon-components",
|
3 |
| - "version": "7.0.0-rc.4", |
4 |
| - "description": "Carbon Components is a component library for Carbon", |
5 |
| - "main": "umd/index.js", |
| 3 | + "description": "Carbon Components is a component library for IBM Cloud", |
| 4 | + "homepage": "http://carbondesignsystem.com/", |
| 5 | + "version": "7.0.0", |
6 | 6 | "module": "es/index.js",
|
7 |
| - "maintainers": [ |
8 |
| - { |
9 |
| - "name": "Brian Han", |
10 |
| - |
11 |
| - }, |
12 |
| - { |
13 |
| - "name": "Mari Johannessen", |
14 |
| - |
15 |
| - }, |
16 |
| - { |
17 |
| - "name": "TJ Egan", |
18 |
| - |
19 |
| - }, |
20 |
| - { |
21 |
| - "name": "Ian Fleming", |
22 |
| - |
23 |
| - }, |
24 |
| - { |
25 |
| - "name": "Akira Sudoh", |
26 |
| - |
27 |
| - }, |
28 |
| - { |
29 |
| - "name": "Chris Dhanaraj", |
30 |
| - |
31 |
| - } |
32 |
| - ], |
33 |
| - "scripts": { |
34 |
| - "prepublish": "npm run build", |
35 |
| - "prebuild": "gulp clean", |
36 |
| - "build": "gulp build", |
37 |
| - "commitmsg": "validate-commit-msg", |
38 |
| - "dev": "gulp serve & npm run serve", |
39 |
| - "serve": "nodemon -e dust,js server.js", |
40 |
| - "start": "node server.js", |
41 |
| - "lint": "gulp lint", |
42 |
| - "test": "gulp test", |
43 |
| - "test:unit": "gulp test:unit", |
44 |
| - "test:a11y": "gulp test:a11y" |
| 7 | + "main": "umd/index.js", |
| 8 | + "repository": { |
| 9 | + "type": "git" |
45 | 10 | },
|
46 |
| - "engines": { |
47 |
| - "node": "~4.0.0", |
48 |
| - "npm": "~3.0.0" |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/carbon-design-system/carbon-components/issues" |
49 | 13 | },
|
| 14 | + "keywords": [ |
| 15 | + "carbon", |
| 16 | + "component", |
| 17 | + "components", |
| 18 | + "css", |
| 19 | + "html", |
| 20 | + "ibm", |
| 21 | + "javascript", |
| 22 | + "js", |
| 23 | + "library", |
| 24 | + "pattern", |
| 25 | + "patterns", |
| 26 | + "sass", |
| 27 | + "scss", |
| 28 | + "style guide" |
| 29 | + ], |
50 | 30 | "dependencies": {
|
51 | 31 | "adaro": "1.0.4",
|
52 | 32 | "bluebird": "~3.1.1",
|
|
125 | 105 | "vinyl-named": "^1.1.0",
|
126 | 106 | "webpack": "^2.0.0"
|
127 | 107 | },
|
128 |
| - "repository": { |
129 |
| - "type": "git" |
130 |
| - }, |
131 | 108 | "files": [
|
| 109 | + "css/**/*", |
132 | 110 | "es/**/*",
|
133 |
| - "umd/**/*", |
| 111 | + "html/**/*", |
134 | 112 | "scripts/**/*",
|
135 | 113 | "scss/**/*",
|
136 |
| - "css/**/*", |
137 |
| - "html/**/*", |
138 |
| - "src/**/*" |
139 |
| - ], |
140 |
| - "keywords": [ |
141 |
| - "carbon", |
142 |
| - "component", |
143 |
| - "components", |
144 |
| - "css", |
145 |
| - "html", |
146 |
| - "ibm", |
147 |
| - "javascript", |
148 |
| - "js", |
149 |
| - "library", |
150 |
| - "pattern", |
151 |
| - "patterns", |
152 |
| - "sass", |
153 |
| - "scss", |
154 |
| - "style guide" |
| 114 | + "src/**/*", |
| 115 | + "umd/**/*" |
155 | 116 | ],
|
| 117 | + "scripts": { |
| 118 | + "build": "gulp build", |
| 119 | + "commitmsg": "validate-commit-msg", |
| 120 | + "dev": "gulp serve & npm run serve", |
| 121 | + "lint": "gulp lint", |
| 122 | + "prebuild": "gulp clean", |
| 123 | + "prepublish": "npm run build", |
| 124 | + "serve": "nodemon -e dust,js server.js", |
| 125 | + "start": "node server.js", |
| 126 | + "test": "gulp test", |
| 127 | + "test:a11y": "gulp test:a11y", |
| 128 | + "test:unit": "gulp test:unit" |
| 129 | + }, |
| 130 | + "license": "Apache-2", |
156 | 131 | "config": {
|
| 132 | + "commitizen": { |
| 133 | + "path": "./node_modules/cz-conventional-changelog" |
| 134 | + }, |
157 | 135 | "validate-commit-msg": {
|
| 136 | + "maxSubjectLength": 100, |
| 137 | + "subjectPattern": ".+", |
| 138 | + "subjectPatternErrorMsg": "Subject does not match subject pattern!", |
158 | 139 | "types": [
|
| 140 | + "chore", |
| 141 | + "docs", |
159 | 142 | "feat",
|
160 | 143 | "fix",
|
161 |
| - "docs", |
162 |
| - "style", |
163 |
| - "refactor", |
164 | 144 | "perf",
|
165 |
| - "test", |
166 |
| - "chore", |
167 |
| - "revert" |
| 145 | + "refactor", |
| 146 | + "revert", |
| 147 | + "style", |
| 148 | + "test" |
168 | 149 | ],
|
169 |
| - "warnOnFail": false, |
170 |
| - "maxSubjectLength": 100, |
171 |
| - "subjectPattern": ".+", |
172 |
| - "subjectPatternErrorMsg": "Subject does not match subject pattern!" |
| 150 | + "warnOnFail": false |
| 151 | + } |
| 152 | + }, |
| 153 | + "maintainers": [ |
| 154 | + { |
| 155 | + "name": "Brian Han", |
| 156 | + |
173 | 157 | },
|
174 |
| - "commitizen": { |
175 |
| - "path": "./node_modules/cz-conventional-changelog" |
| 158 | + { |
| 159 | + "name": "Mari Johannessen", |
| 160 | + |
| 161 | + }, |
| 162 | + { |
| 163 | + "name": "TJ Egan", |
| 164 | + |
| 165 | + }, |
| 166 | + { |
| 167 | + "name": "Ian Fleming", |
| 168 | + |
| 169 | + }, |
| 170 | + { |
| 171 | + "name": "Akira Sudoh", |
| 172 | + |
| 173 | + }, |
| 174 | + { |
| 175 | + "name": "Chris Dhanaraj", |
| 176 | + |
176 | 177 | }
|
177 |
| - } |
| 178 | + ] |
178 | 179 | }
|
0 commit comments