-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 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
52
53
54
{
"name": "ampersand-rest-collection",
"description": "ampersand-collection with REST and Lodash mixins.",
"version": "6.0.0",
"author": "Henrik Joreteg <henrik@andyet.net>",
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-rest-collection/issues"
},
"dependencies": {
"ampersand-collection": "^2.0.0",
"ampersand-collection-lodash-mixin": "^4.0.0",
"ampersand-collection-rest-mixin": "^6.0.0",
"ampersand-version": "^1.0.2"
},
"devDependencies": {
"jshint": "^2.9.1",
"phantomjs": "^2.1.7",
"precommit-hook": "^3.0.0",
"tape": "^4.0.3",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-rest-collection",
"keywords": [
"collection",
"rest",
"models"
],
"license": "MIT",
"main": "ampersand-rest-collection.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-rest-collection"
},
"scripts": {
"start": "zuul --local -- test/main.js",
"test": "zuul --phantom -- test/main.js",
"test-ci": "zuul -- test/main.js",
"lint": "jshint .",
"validate": "npm ls"
},
"files": [
"ampersand-rest-collection.js"
],
"pre-commit": [
"lint",
"validate",
"test"
]
}