This repository has been archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.32 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
{
"name": "ee-ts-util",
"version": "14.1.7",
"description": "typescript utilities and functions",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run clean; npm test",
"build": "./node_modules/typescript/bin/tsc",
"pretest": "npm run lint",
"test": "jest --verbose",
"lint": "npm run lint:ts",
"lint:ts": "tslint {src,test}/**/*.{ts,tsx}",
"clean": "rm -rf lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EqualExperts/ts-util.git"
},
"keywords": [
"typescript",
"mongodb",
"integration"
],
"author": "EqualExperts",
"license": "MIT",
"bugs": {
"url": "https://github.com/EqualExperts/ts-util/issues"
},
"homepage": "https://github.com/EqualExperts/ts-util#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [
"/node_modules/(?!bullhorn.ts)"
],
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.(ts|tsx|js)$",
"roots": [
"<rootDir>/test"
]
},
"devDependencies": {
"@types/convict": "^4.2.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/jest": "^21.1.10",
"@types/mongodb": "^2.2.23",
"@types/node": "^8.10.38",
"@types/nodemailer": "^4.6.5",
"@types/ramda": "^0.25.42",
"jest": "^22.4.4",
"ts-jest": "^22.4.6",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/mime-types": "^2.1.0",
"bullhorn-client": "git+https://github.com/EqualExperts/bullhorn.git#164d2fe355da360291ebfbd55076665d365c282d",
"convict": "^4.4.0",
"createsend-node": "^0.8.2",
"fp-ts": "^0.6.8",
"googleapis": "^26.0.1",
"isomorphic-fetch": "^2.2.1",
"log4js": "^3.0.6",
"mime-types": "^2.1.21",
"moment": "^2.22.2",
"mongodb": "^2.2.36",
"nano-seconds": "^1.2.2",
"nodemailer": "^4.7.0",
"ramda": "^0.25.0",
"uuid": "^3.3.2",
"xero-node": "^2.20.0"
}
}