Skip to content

Commit

Permalink
added package.json, updated to-no-case
Browse files Browse the repository at this point in the history
  • Loading branch information
ianstormtaylor committed Oct 2, 2013
1 parent 80fb893 commit 4841c75
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
components
build
6 changes: 5 additions & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
0.1.1 - October 1, 2013
-----------------------
* updated `to-no-case`

0.1.0 - September 18, 2013
--------------------------
* update to use `to-no-case`
* updated to use `to-no-case`

0.0.1 - September 18, 2013
--------------------------
Expand Down
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@

build: components index.js
build: node_modules components index.js
@component build --dev

components: component.json
@component install --dev

clean:
rm -fr build components template.js
@rm -fr build node_modules components

node_modules: package.json
@npm install

test: build
open test/index.html
@open test/index.html

.PHONY: clean test
1 change: 1 addition & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Installation

$ component install ianstormtaylor/to-capital-case
$ npm install to-capital-case

## Example

Expand Down
4 changes: 2 additions & 2 deletions component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"name": "to-capital-case",
"repo": "ianstormtaylor/to-capital-case",
"license": "MIT",
"version": "0.1.0",
"version": "0.1.1",
"description": "Convert a string to a capital case.",
"keywords": ["capital", "case", "capitalcase", "string"],
"dependencies": {
"ianstormtaylor/to-no-case": "0.1.0"
"ianstormtaylor/to-no-case": "0.1.1"
},
"development": {
"component/assert": "*"
Expand Down
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "to-capital-case",
"repository": "git:https://github.com/ianstormtaylor/to-capital-case.git",
"license": "MIT",
"version": "0.1.1",
"description": "Convert a string to capital case.",
"keywords": ["capital", "case", "capitalcase", "string"],
"dependencies": {
"to-no-case": "0.1.1"
}
}

0 comments on commit 4841c75

Please sign in to comment.