-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
90 lines (90 loc) · 2.07 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "halon",
"version": "0.4.3",
"homepage": "https://github.com/LeanKit-Labs/halon",
"description": "JavaScript Hypermedia Client",
"author": "LeanKit",
"repository": {
"type": "git",
"url": "git://github.com/LeanKit-Labs/halon.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"contributors": [
{
"name": "Jim Cowart",
"email": "[email protected]",
"url": "http://ifandelse.com"
},
{
"name": "Alex Robson",
"url": "http://nerdventure.io"
},
{
"name": "Doug Neiner",
"email": "[email protected]",
"url": "http://code.dougneiner.com"
},
{
"name": "Ryan Niemeyer",
"url": "http://knockmeout.net"
},
{
"name": "Brian Edgerton",
"email": "[email protected]"
}
],
"main": "./lib/halon.js",
"keywords": [
"HAL",
"hypermedia",
"REST"
],
"scripts": {
"build": "gulp",
"test": "gulp build:quick && mocha -r spec/helpers/node-setup.js spec",
"coverage": "gulp build:quick && istanbul cover _mocha -x 'spec/**/*' -- -r spec/helpers/node-setup.js spec spec/*.spec.js",
"show-coverage": "open ./coverage/lcov-report/index.html"
},
"dependencies": {
"urijs": "^1.14.1",
"lodash": "3.x",
"machina": "1.x",
"when": "3.x"
},
"devDependencies": {
"chai": "^2.1.1",
"chai-as-promised": "^4.3.0",
"gulp": "^3.8.11",
"gulp-changed": "^1.2.1",
"gulp-header": "^1.0.5",
"gulp-hint-not": "0.0.3",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "^1.10.0",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-spawn-mocha": "^2.0.1",
"gulp-uglify": "^1.1.0",
"gulp-util": "~3.0.5",
"istanbul": "^0.3.10",
"jshint-stylish": "^1.0.1",
"mocha": "^2.2.0",
"sinon": "^1.13.0",
"sinon-as-promised": "^2.0.3",
"sinon-chai": "^2.7.0"
},
"engines": {
"node": ">=0.10.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"files": [
"lib",
"LICENSE"
]
}