forked from dsn/node-atlassian-crowd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1012 Bytes
/
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
{
"name": "atlassian-crowd",
"version": "0.4.4",
"main": "./lib/index.js",
"author": "Gary Steven <[email protected]>",
"contributors": [
{ "name": "Teemu Matilainen", "email": "[email protected]" },
{ "name": "Petri Ämmälä" }
],
"license": "MIT",
"description": "A node.js module to communicate with Atlassian Crowd",
"bugs": {
"url": "https://github.com/dsn/node-atlassian-crowd/issues"
},
"engines": {
"node": ">= 0.6.x"
},
"devDependancies": {
"nodeunit": "0.7.4",
"jshint": "0.9.1"
},
"bundledDependancies": [
"nodeunit",
"jshint"
],
"keywords": [ "atlassian", "crowd", "sso" ],
"repository": {
"type": "git",
"url": "https://github.com/dsn/node-atlassian-crowd.git"
},
"scripts": {
"test": "node_modules/nodeunit/bin/nodeunit test/run-tests.js",
"lint": "node_modules/jshint/bin/hint package.json lib/index.js lib/user.js lib/groups.js lib/session.js test/test.config test/run-tests.js"
}
}