-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ampersand-collection-lodash-mixin",
"description": "A mixin for extending ampersand-collection with lodash methods.",
"version": "51.0.0",
"author": "Henrik Joreteg <[email protected]>",
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-collection-lodash-mixin/issues"
},
"dependencies": {
"ampersand-version": "^1.0.0"
},
"devDependencies": {
"ampersand-collection": "^1.0.0",
"ampersand-state": "^4.3.2",
"browserify": "^9.0.4",
"jshint": "^2.5.5",
"lodash": "^4.11.1",
"phantomjs": "^1.9.7-15",
"precommit-hook": "^2.0.1",
"run-browser": "^2.0.2",
"tap-spec": "^2.2.2",
"tape": "^3.5.0",
"tape-run": "^1.0.0"
},
"peerDependencies": {
"lodash": "4.*"
},
"homepage": "https://github.com/ampersandjs/ampersand-collection-lodash-mixin",
"keywords": [
"ampersand",
"collection",
"underscore",
"lodash"
],
"license": "MIT",
"main": "ampersand-collection-lodash-mixin.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-collection-lodash-mixin"
},
"scripts": {
"test": "browserify test/index.js | tape-run | tap-spec",
"lint": "jshint .",
"start": "run-browser test/index.js",
"list": "node -e \"console.log(Object.keys(require('./ampersand-collection-lodash-mixin')).sort().join(', '))\""
},
"pre-commit": [
"lint",
"test"
],
"testling": {
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}