-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.11 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
{
"name": "atlassian-crowd-client",
"version": "1.1.1",
"description": "Atlassian Crowd API client for Node",
"author": "Gert Hengeveld",
"scripts": {
"test": "mocha test/*.spec.js --compilers js:babel/register --timeout 5000",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"main": "lib/client.js",
"repository": {
"type": "git",
"url": "https://github.com/wehkamp/atlassian-crowd-client"
},
"bugs": {
"url": "https://github.com/wehkamp/atlassian-crowd-client/issues"
},
"homepage": "https://github.com/wehkamp/atlassian-crowd-client",
"keywords": [
"atlassian",
"crowd",
"authentication",
"sso",
"ldap"
],
"license": "Apache-2.0",
"devDependencies": {
"assert": "^1.3.0",
"babel": "^5.6.23",
"eslint": "^0.24.1",
"mocha": "^2.2.5"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"mocha": true
},
"ecmaFeatures": {
"modules": true
},
"rules": {
"quotes": [
2,
"single"
]
}
},
"dependencies": {
"core-js": "^0.9.18"
}
}