-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.96 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
{
"name": "total-expert-node",
"version": "0.2.0",
"description": "A functional wrapper for communicating with the Total Expert CRM API",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"posttest": "eslint ./src/**/* ./__tests__/**/*.spec.ts --fix",
"build": "rollup -c",
"prepack": "npm run build"
},
"dependencies": {
"@types/node-fetch": "^2.5.7",
"node-fetch": "^2.6.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.16",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"rollup": "^2.34.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**/*.{ts,tsx}",
"!**/src/**/index.ts"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/peoplesmortgage/total-expert-node.git"
},
"keywords": [
"total-expert",
"mortgage",
"crm",
"node"
],
"author": "Paul Richard <heythisispaul@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/peoplesmortgage/total-expert-node/issues"
},
"homepage": "https://github.com/peoplesmortgage/total-expert-node#readme"
}