-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.12 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
{
"name": "@byu-oit/ts-claims-engine",
"version": "2.2.1",
"description": "Claims engine implementation in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf 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.git"
},
"author": "Spencer Tuft <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/byu-oit/ts-claims-engine/issues"
},
"homepage": "https://github.com/byu-oit/ts-claims-engine#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.165",
"@types/mocha": "^5.2.7",
"@types/node": "^12.19.4",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"lodash": "^4.17.20",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"change-case": "^3.1.0"
},
"directories": {
"test": "test",
"lib": "lib"
},
"keywords": [
"typescript",
"claims",
"adjudicator",
"engine"
],
"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"
}
}