forked from stianeikeland/node-etcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.91 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
{
"name": "node-etcd",
"version": "6.0.0",
"description": "etcd library for node.js (etcd v2 api)",
"repository": {
"type": "git",
"url": "http://github.com/stianeikeland/node-etcd.git"
},
"licenses": [
{
"type": "BSD 3-Clause",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
],
"maintainers": [
{
"name": "Stian Eikeland",
"email": "stian@eikeland.se",
"web": "http://eikeland.se/"
}
],
"contribuitors": [
{
"name": "Stian Eikeland",
"url": "https://github.com/stianeikeland"
},
{
"name": "Derek Brown",
"email": "mail@derektbrown.com",
"url": "derektbrown.com"
},
{
"name": "Jon Morehouse",
"email": "morehousej09@gmail.com",
"url": "https://github.com/jonmorehouse"
},
{
"name": "Bryan Rockwood",
"email": "bryan.rockwood@c2fo.com",
"url": "https://github.com/brockwood"
}
],
"engines": {
"node": ">= 0.10.0"
},
"main": "lib/index.js",
"scripts": {
"build": "node_modules/.bin/coffee --bare --compile --output lib/ src/*.coffee",
"prepublish": "node_modules/.bin/coffee --bare --compile --output lib/ src/*.coffee",
"test": "node_modules/.bin/mocha --require coffee-coverage/register-istanbul --compilers coffee:coffee-script/register test/",
"coverage": "node_modules/.bin/nyc npm test",
"watch": "node_modules/.bin/mocha --compilers coffee:coffee-script/register --watch"
},
"nyc": {
"check-coverage": true,
"include": [
"src/**/*.js"
]
},
"dependencies": {
"deasync": "0.1.10",
"lodash": "4.17.4",
"request": "2.81.0",
"url-parse": "1.0.5"
},
"devDependencies": {
"coffee-coverage": "2.0.1",
"coffee-script": "1.12.7",
"mocha": "3.5.0",
"nock": "9.0.14",
"nyc": "11.1.0",
"should": "11.2.1",
"simple-mock": "0.8.0"
},
"keywords": [
"etcd",
"raft"
]
}