-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.18 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": "passport-bullhorn",
"version": "0.0.4",
"description": "Bullhorn (OAuth) authentication strategy for Passport",
"keywords": [
"passport",
"bullhorn",
"oauth",
"oauth2",
"authentication"
],
"main": "lib/index.js",
"scripts": {
"compile": "babel --stage 0 -d lib/ src/",
"prepublish": "npm run compile",
"test": "npm run compile && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bullhorn/passport-bullhorn.git"
},
"author": "Brian Kimball <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bullhorn/passport-bullhorn/issues"
},
"homepage": "https://github.com/bullhorn/passport-bullhorn",
"dependencies": {
"passport-oauth": "^1.0.0"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-jest": "^5.0.1",
"jest-cli": "^0.4.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testDirectoryName": "test",
"unmockedModulePathPatterns": [
"index"
]
},
"directories": {
"test": "test"
}
}