-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.3 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ampersand-filtered-subcollection",
"version": "3.0.0",
"description": "Filterable, sortable, proxy of a collection that behaves like a collection.",
"main": "ampersand-filtered-subcollection.js",
"scripts": {
"start": "zuul --local -- test/main.js",
"test": "zuul --phantom -- test/main.js",
"test-ci": "zuul -- test/main.js",
"lint": "jshint .",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/AmpersandJS/ampersand-filtered-subcollection.git"
},
"keywords": [
"ampersand",
"collection",
"filter",
"sort"
],
"author": "Gar <gar@andyet.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AmpersandJS/ampersand-filtered-subcollection/issues"
},
"files": [
"ampersand-filtered-subcollection.js"
],
"homepage": "https://github.com/AmpersandJS/ampersand-filtered-subcollection",
"dependencies": {
"ampersand-class-extend": "^2.0.0",
"ampersand-events": "^2.0.1",
"lodash": "^4.11.2"
},
"devDependencies": {
"ampersand-collection": "^2.0.0",
"ampersand-state": "^5.0.1",
"jshint": "^2.6.0",
"phantomjs": "^2.1.7",
"precommit-hook": "^3.0.0",
"tape": "^4.4.0",
"zuul": "^3.9.0"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}