Skip to content

Commit 1812fc4

Browse files
committed
Merge pull request #42 from spmjs/master
Add spm support in package.json
2 parents 099ad07 + 531c2be commit 1812fc4

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ Package Managers
99
* [Bower](http://bower.io/): `jquery`
1010
* [Component](https://github.com/component/component): `components/jquery`
1111
* [Composer](http://packagist.org/packages/components/jquery): `components/jquery`
12+
* [spm](http://spmjs.io/package/jquery): `jquery`

package.json

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,33 @@
11
{
2-
"name": "components-jquery",
2+
"name": "jquery",
3+
"description": "JavaScript library for DOM operations",
34
"version": "2.1.0",
4-
"description": "jQuery component",
5-
"keywords": ["jquery"],
6-
"main": "./jquery.js"
5+
"homepage": "http://jquery.com",
6+
"author": {
7+
"name": "jQuery Foundation and other contributors",
8+
"url": "https://github.com/jquery/jquery/blob/master/AUTHORS.txt"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/jquery/jquery.git"
13+
},
14+
"keywords": [
15+
"jquery",
16+
"javascript",
17+
"browser",
18+
"library"
19+
],
20+
"bugs": {
21+
"url": "http://bugs.jquery.com"
22+
},
23+
"licenses": [
24+
{
25+
"type": "MIT",
26+
"url": "https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt"
27+
}
28+
],
29+
"spm": {
30+
"main": "jquery.js"
31+
}
732
}
33+

0 commit comments

Comments
 (0)