forked from ssevertson/oktajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 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": "oktajs",
"description": "An interface for the Okta REST API from nodejs",
"author": "Jon Davis <[email protected]>",
"contributors":["Josh Johnson <[email protected]>","Kevin He <[email protected]>"],
"tags": [
"okta",
"identity",
"sso",
"security"
],
"dependencies": {
"request": "2.69.x"
},
"devDependencies": {
"chai": "3.5.x",
"jshint": "2.9.x",
"mocha": "2.4.x"
},
"repository": {
"type": "git",
"url": "http://github.com/snowulf/oktajs.git"
},
"bugs": {
"url": "http://github.com/snowulf/oktajs/issues"
},
"main": "index.js",
"version": "3.0.1",
"engines": "node >= 0.10.40",
"license": "MIT",
"scripts": {
"alltest": "npm run lint && mocha --timeout 3000 --slow 1000 tests/main.js",
"test": "mocha --timeout 3000 --slow 1000 tests/main.js",
"lint": "jshint lib/*.js"
},
"jshintConfig": {
"boss": true,
"node": true,
"strict": true,
"newcap": false,
"undef": true,
"unused": true,
"onecase": true,
"lastsemic": true,
"indent": 2,
"globals": {
"escape": true,
"describe": true,
"it": true,
"before": true
}
}
}