-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.77 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": "@ssense/jwt-active-directory",
"version": "0.3.0",
"description": "Ssense JWT Active Directory Authenticator",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"lint": "tslint --format verbose './ts/**/*.ts' './tests/**/*.ts' ",
"compile": "rm -rf dist/* && tsc",
"test": "NODE_ENV=test npm run test:unit",
"test:unit": "NODE_ENV=test mocha tests/unit --recursive --compilers ts:ts-node/register --bail",
"cover": "./node_modules/.bin/nyc --report-dir tests/coverage/ npm run test",
"coveralls": "cat tests/coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SSENSE/jwt-active-directory.git"
},
"keywords": [
"Ssense",
"console",
"jwt",
"json web token",
"authenticator",
"Active Directory"
],
"author": "Mathieu Doyon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SSENSE/jwt-active-directory/issues"
},
"devDependencies": {
"@ssense/tslint-config": "^4.0.0",
"@types/mocha": "^2.2.35",
"@types/node": "^6.0.54",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"ldapjs": "^1.0.1",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"node-mocks-http": "^1.5.5",
"nyc": "^10.0.0",
"ts-node": "^1.7.3",
"tslint": "^4.2.0",
"typescript": "^2.1.4",
"winston": "^2.3.0"
},
"dependencies": {
"activedirectory": "^0.7.2",
"jsonwebtoken": "^7.2.1"
},
"nyc": {
"include": [
"ts/*.ts"
],
"exclude": [
"node_modules",
"ts/index.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary",
"lcov"
]
}
}