Skip to content

Commit dc8853a

Browse files
committed
Merge pull request #60 from wbinnssmith/wbinnssmith/package-json
Add metadata and main field to package json
2 parents b1c8f2d + a45ccb9 commit dc8853a

File tree

2 files changed

+23
-7
lines changed

2 files changed

+23
-7
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
sudo: false
12
language: node_js
23
node_js:
3-
- "0.11"
4+
- "4"
45
before_script:
5-
- npm install -g grunt-cli
6+
- npm install -g grunt-cli

package.json

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,33 @@
11
{
22
"name": "jquery-localize",
3-
"version": "0.0.0-ignored",
3+
"description": "A jQuery plugin that makes it easy to i18n your static web site.",
4+
"version": "0.1.0",
5+
"homepage": "https://github.com/coderifous/jquery-localize",
6+
"license": "MIT",
7+
"main": "dist/jquery.localize.js",
8+
"author": {
9+
"name": "coderifous",
10+
"email": "[email protected]"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/coderifous/jquery-localize.git"
15+
},
16+
"bugs": "https://github.com/coderifous/jquery-localize/issues",
417
"engines": {
518
"node": ">= 0.8.0"
619
},
720
"scripts": {
21+
"prepublish": "grunt",
822
"test": "grunt test"
923
},
1024
"devDependencies": {
11-
"grunt-contrib-qunit": "~0.2.0",
12-
"grunt-contrib-uglify": "~0.2.0",
13-
"grunt-contrib-clean": "~0.4.0",
1425
"grunt": "~0.4.2",
26+
"grunt-cli": "^0.1.13",
27+
"grunt-contrib-clean": "~0.4.0",
1528
"grunt-contrib-coffee": "~0.10.0",
16-
"grunt-contrib-connect": "~0.6.0"
29+
"grunt-contrib-connect": "~0.6.0",
30+
"grunt-contrib-qunit": "~0.2.0",
31+
"grunt-contrib-uglify": "~0.2.0"
1732
}
1833
}

0 commit comments

Comments
 (0)