-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.23 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
{
"name": "@byu-oit/ts-claims-engine-middleware",
"version": "2.0.2",
"description": "Claims engine middleware implementation in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && npm run copy",
"clean": "rimraf dist",
"copy": "cp src/api.json dist/",
"coverage": "nyc report --reporter=json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "nyc mocha -r ts-node/register -r source-map-support/register ./test/**/*-test.ts"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/byu-oit/ts-claims-engine-middleware.git"
},
"author": "Spencer Tuft <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/byu-oit/ts-claims-engine-middleware/issues"
},
"homepage": "https://github.com/byu-oit/ts-claims-engine-middleware#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.167",
"@types/mocha": "^5.2.7",
"@types/node": "^12.19.12",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^6.15.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"lodash": "^4.17.20",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@byu-oit/ts-claims-engine": "^2.2.1",
"express": "^4.17.1",
"openapi-enforcer": "^1.12.5",
"openapi-enforcer-middleware": "^1.2.2"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
]
},
"eslintIgnore": [
"node_modules",
"example",
"dist",
"coverage"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}