-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
73 lines (73 loc) · 1.58 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
{
"name": "confluence-api",
"version": "1.4.0",
"description": "Confluence API wrapper for NodeJS",
"main": "./lib/confluence.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"create-docs": "jsdoc2md lib/confluence.js > api.md"
},
"repository": {
"type": "git",
"url": "http://github.com/johnpduane/confluence-api.git"
},
"keywords": [
"atlassian",
"confluence",
"api",
"wiki",
"node.js"
],
"author": "John Duane <johnpduane@gmail.com>",
"contributors": [
{
"name": "John Duane",
"url": "https://github.com/johnpduane"
},
{
"name": "lukouko",
"url": "https://github.com/lukouko"
},
{
"name": "Vadim Efimov",
"url": "https://github.com/qvaqvaboo"
},
{
"name": "corn3lius",
"url": "https://github.com/corn3lius"
},
{
"name": "Matthias Lersch",
"url": "https://github.com/mlersch"
},
{
"name": "evgeniusorg",
"url": "https://github.com/evgeniusorg"
},
{
"name": "arthmoeros",
"url": "https://github.com/arthmoeros"
},
{
"name": "Richard Hurt",
"url": "https://github.com/rnhurt"
},
{
"name": "Ben Limmer",
"url": "https://github.com/blimmer"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/johnpduane/confluence-api/issues"
},
"homepage": "https://github.com/johnpduane/confluence-api",
"devDependencies": {
"chai": "*",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "*"
},
"dependencies": {
"superagent": "^3.8.3"
}
}