Skip to content

Commit 213ebf1

Browse files
Christopher A. DhanarajGitHub Enterprise
Christopher A. Dhanaraj
authored and
GitHub Enterprise
committed
Release 7 (#2467)
* chore(build): update to 7.x! also move the module defintion higher, just in case * chore(build): final cleanup of package.json * chore(build): remove the node engine section"
1 parent 0d8d06f commit 213ebf1

File tree

1 file changed

+81
-80
lines changed

1 file changed

+81
-80
lines changed

package.json

Lines changed: 81 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,32 @@
11
{
22
"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",
66
"module": "es/index.js",
7-
"maintainers": [
8-
{
9-
"name": "Brian Han",
10-
"email": "[email protected]"
11-
},
12-
{
13-
"name": "Mari Johannessen",
14-
"email": "[email protected]"
15-
},
16-
{
17-
"name": "TJ Egan",
18-
"email": "[email protected]"
19-
},
20-
{
21-
"name": "Ian Fleming",
22-
"email": "[email protected]"
23-
},
24-
{
25-
"name": "Akira Sudoh",
26-
"email": "[email protected]"
27-
},
28-
{
29-
"name": "Chris Dhanaraj",
30-
"email": "[email protected]"
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"
4510
},
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"
4913
},
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+
],
5030
"dependencies": {
5131
"adaro": "1.0.4",
5232
"bluebird": "~3.1.1",
@@ -125,54 +105,75 @@
125105
"vinyl-named": "^1.1.0",
126106
"webpack": "^2.0.0"
127107
},
128-
"repository": {
129-
"type": "git"
130-
},
131108
"files": [
109+
"css/**/*",
132110
"es/**/*",
133-
"umd/**/*",
111+
"html/**/*",
134112
"scripts/**/*",
135113
"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/**/*"
155116
],
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",
156131
"config": {
132+
"commitizen": {
133+
"path": "./node_modules/cz-conventional-changelog"
134+
},
157135
"validate-commit-msg": {
136+
"maxSubjectLength": 100,
137+
"subjectPattern": ".+",
138+
"subjectPatternErrorMsg": "Subject does not match subject pattern!",
158139
"types": [
140+
"chore",
141+
"docs",
159142
"feat",
160143
"fix",
161-
"docs",
162-
"style",
163-
"refactor",
164144
"perf",
165-
"test",
166-
"chore",
167-
"revert"
145+
"refactor",
146+
"revert",
147+
"style",
148+
"test"
168149
],
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+
"email": "[email protected]"
173157
},
174-
"commitizen": {
175-
"path": "./node_modules/cz-conventional-changelog"
158+
{
159+
"name": "Mari Johannessen",
160+
"email": "[email protected]"
161+
},
162+
{
163+
"name": "TJ Egan",
164+
"email": "[email protected]"
165+
},
166+
{
167+
"name": "Ian Fleming",
168+
"email": "[email protected]"
169+
},
170+
{
171+
"name": "Akira Sudoh",
172+
"email": "[email protected]"
173+
},
174+
{
175+
"name": "Chris Dhanaraj",
176+
"email": "[email protected]"
176177
}
177-
}
178+
]
178179
}

0 commit comments

Comments
 (0)