Skip to content

Commit

Permalink
Release 7 (#2467)
Browse files Browse the repository at this point in the history
* 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"
  • Loading branch information
Christopher A. Dhanaraj authored and GitHub Enterprise committed Mar 30, 2017
1 parent 0d8d06f commit 213ebf1
Showing 1 changed file with 81 additions and 80 deletions.
161 changes: 81 additions & 80 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,32 @@
{
"name": "carbon-components",
"version": "7.0.0-rc.4",
"description": "Carbon Components is a component library for Carbon",
"main": "umd/index.js",
"description": "Carbon Components is a component library for IBM Cloud",
"homepage": "http://carbondesignsystem.com/",
"version": "7.0.0",
"module": "es/index.js",
"maintainers": [
{
"name": "Brian Han",
"email": "bthan@us.ibm.com"
},
{
"name": "Mari Johannessen",
"email": "mjohannessen@us.ibm.com"
},
{
"name": "TJ Egan",
"email": "twegan@us.ibm.com"
},
{
"name": "Ian Fleming",
"email": "ianfleming@us.ibm.com"
},
{
"name": "Akira Sudoh",
"email": "asudoh@jp.ibm.com"
},
{
"name": "Chris Dhanaraj",
"email": "chrisdhanaraj@us.ibm.com"
}
],
"scripts": {
"prepublish": "npm run build",
"prebuild": "gulp clean",
"build": "gulp build",
"commitmsg": "validate-commit-msg",
"dev": "gulp serve & npm run serve",
"serve": "nodemon -e dust,js server.js",
"start": "node server.js",
"lint": "gulp lint",
"test": "gulp test",
"test:unit": "gulp test:unit",
"test:a11y": "gulp test:a11y"
"main": "umd/index.js",
"repository": {
"type": "git"
},
"engines": {
"node": "~4.0.0",
"npm": "~3.0.0"
"bugs": {
"url": "https://github.com/carbon-design-system/carbon-components/issues"
},
"keywords": [
"carbon",
"component",
"components",
"css",
"html",
"ibm",
"javascript",
"js",
"library",
"pattern",
"patterns",
"sass",
"scss",
"style guide"
],
"dependencies": {
"adaro": "1.0.4",
"bluebird": "~3.1.1",
Expand Down Expand Up @@ -125,54 +105,75 @@
"vinyl-named": "^1.1.0",
"webpack": "^2.0.0"
},
"repository": {
"type": "git"
},
"files": [
"css/**/*",
"es/**/*",
"umd/**/*",
"html/**/*",
"scripts/**/*",
"scss/**/*",
"css/**/*",
"html/**/*",
"src/**/*"
],
"keywords": [
"carbon",
"component",
"components",
"css",
"html",
"ibm",
"javascript",
"js",
"library",
"pattern",
"patterns",
"sass",
"scss",
"style guide"
"src/**/*",
"umd/**/*"
],
"scripts": {
"build": "gulp build",
"commitmsg": "validate-commit-msg",
"dev": "gulp serve & npm run serve",
"lint": "gulp lint",
"prebuild": "gulp clean",
"prepublish": "npm run build",
"serve": "nodemon -e dust,js server.js",
"start": "node server.js",
"test": "gulp test",
"test:a11y": "gulp test:a11y",
"test:unit": "gulp test:unit"
},
"license": "Apache-2",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "Subject does not match subject pattern!",
"types": [
"chore",
"docs",
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
"refactor",
"revert",
"style",
"test"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "Subject does not match subject pattern!"
"warnOnFail": false
}
},
"maintainers": [
{
"name": "Brian Han",
"email": "bthan@us.ibm.com"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
{
"name": "Mari Johannessen",
"email": "mjohannessen@us.ibm.com"
},
{
"name": "TJ Egan",
"email": "twegan@us.ibm.com"
},
{
"name": "Ian Fleming",
"email": "ianfleming@us.ibm.com"
},
{
"name": "Akira Sudoh",
"email": "asudoh@jp.ibm.com"
},
{
"name": "Chris Dhanaraj",
"email": "chrisdhanaraj@us.ibm.com"
}
}
]
}

0 comments on commit 213ebf1

Please sign in to comment.