-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.55 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
{
"name": "@uvasomit/shibboleth",
"version": "1.0.0",
"description": "JavaScript package for accessing authentication items from Shibboleth in Express and Restify web applications.",
"main": "./dist/index.js",
"nyc": {
"all": true,
"check-coverage": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"exclude": [
"**/*.d.ts",
"**/*.test.js"
],
"reporter": [
"text",
"cobertura",
"html"
],
"report-dir": "./.nyc_output/coverage"
},
"scripts": {
"build": "tsc",
"test": "tsc && myc mocha",
"eslint": "eslint ./src/*.ts ./src/**/*.ts",
"eslint-fix": "eslint ./src/*.ts ./src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UVASOMIT/shibboleth.git"
},
"keywords": [
"shibboleth",
"express",
"expressjs",
"restify",
"iisnode"
],
"author": "Michael Szul <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/UVASOMIT/shibboleth/issues"
},
"homepage": "https://github.com/UVASOMIT/shibboleth#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/node": "^12.12.31",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"mocha": "^6.2.2",
"mocha-junit-reporter": "^1.23.3",
"nyc": "^15.0.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
}
}