-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.2 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@natlibfi/passport-atlassian-crowd",
"description": "Passport strategy for Atlassian Crowd",
"author": {
"name": "The National Library of Finland"
},
"keywords": [],
"homepage": "https://github.com/natlibfi/passport-atlassian-crowd-js",
"bugs": {
"url": "https://github.com/natlibfi/passport-atlassian-crowd-js/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:natlibfi/passport-atlassian-crowd-js.git"
},
"license": "MIT",
"version": "3.0.2",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint --fix src",
"test:base": "cross-env NODE_ENV=test nyc mocha --require @babel/register",
"test": "npm run lint && npm run test:base -- src/**/*.spec.js && npm run coverage",
"coverage": "nyc check-coverage --per-file",
"build": "babel src --source-maps --delete-dir-on-start --out-dir=dist",
"build:dev": "npm run build && npm run check-deps",
"watch": "cross-env NODE_ENV=test chokidar src -c 'npm test'"
},
"dependencies": {
"@babel/register": "^7.24.6",
"http-status": "^1.7.4",
"moment": "^2.30.1",
"node-fetch": "^2.7.0",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@natlibfi/eslint-config-melinda-backend": "^3.0.5",
"@natlibfi/fixura": "^3.0.8",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.5.0",
"chai-passport-strategy": "^3.0.0",
"chokidar-cli": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"mocha": "^10.7.3",
"nock": "^13.5.4",
"nyc": "^17.0.0"
},
"eslintConfig": {
"extends": "@natlibfi/melinda-backend"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "maintained node versions"
}
]
],
"env": {
"test": {
"plugins": [
"rewire",
"istanbul"
]
}
}
},
"nyc": {
"exclude": [
"**/*.spec.js"
],
"reporter": [
"lcov",
"html"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80
}
}