-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 893 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "backbone-sortable-collection",
"description": "Add robust sorting functionality to Backbone Collections",
"license": "MIT",
"author": "Holman Gao <[email protected]>",
"version": "0.0.7",
"main": "lib/backbone_sortable_collection.js",
"repository": {
"type": "git",
"url": "http://github.com/golmansax/backbone-sortable-collection.git"
},
"keywords": [
"backbone",
"sort",
"collection",
"reverse",
"multi-sort"
],
"devDependencies": {
"chai": "1.9.2",
"dirty-chai": "latest",
"codeclimate-test-reporter": "latest",
"istanbul": "latest",
"jscs": "latest",
"jshint": "latest",
"mocha": "latest",
"sinon": "latest",
"sinon-chai": "latest",
"travis-lint": "latest"
},
"dependencies": {
"backbone": "latest",
"underscore": "latest"
},
"scripts": {
"test": "make test"
}
}