Skip to content

Commit c293137

Browse files
author
Simon Ho
committed
Clean up package.json
- Change keywords to lowercase since lowercase is more common in npm searches (uppercase and lowercase searches yield different results) - Reorder keywords alphabetically - Reorder keys to match default scaffold (ie. npm init) ordering - Update package description
1 parent 9b1d406 commit c293137

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
{
22
"name": "loopback-connector-mongodb",
33
"version": "1.13.2",
4-
"description": "LoopBack MongoDB Connector",
5-
"keywords": [
6-
"StrongLoop",
7-
"LoopBack",
8-
"MongoDB",
9-
"DataSource",
10-
"Connector"
11-
],
4+
"description": "The official MongoDB connector for the LoopBack framework.",
125
"main": "index.js",
136
"scripts": {
147
"benchmarks": "make benchmarks",
158
"leak-detection": "make leak-detection",
169
"test": "mocha -G --timeout 10000 test/*.test.js"
1710
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git://github.com/strongloop/loopback-connector-mongodb.git"
14+
},
15+
"keywords": [
16+
"connector",
17+
"datasource",
18+
"loopback",
19+
"strongloop",
20+
"mongodb"
21+
],
22+
"license": "MIT",
1823
"dependencies": {
1924
"loopback-connector": "^2.2.0",
2025
"mongodb": "~2.0.35",
@@ -31,10 +36,5 @@
3136
"semver": "^4.2.0",
3237
"should": "^5.0.0",
3338
"sinon": "^1.15.4"
34-
},
35-
"repository": {
36-
"type": "git",
37-
"url": "git://github.com/strongloop/loopback-connector-mongodb.git"
38-
},
39-
"license": "MIT"
39+
}
4040
}

0 commit comments

Comments
 (0)