-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.87 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@goodwaygroup/lib-tradedesk",
"version": "1.3.1",
"description": "Interact with Tradedesk's API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch --coverageReporters=\"lcov\" --coverage",
"test:results": "open ./coverage/lcov-report/index.html",
"prepare": "if [ -d \".git\" ] && [ -x \"$(command -v husky)\" ]; then husky install; fi;",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"changelog": "git-chglog -o CHANGELOG.md --next-tag v$(grep '\\\"version\\\":' package.json | grep -v git-chglog | awk -F '\\\"' '{print $4}')",
"build:docs": "typedoc && cp CHANGELOG.md docs/ && cp CONTRIBUTING.md docs/ && cp README.md docs/ && cp LICENSE docs/",
"version": "./release.sh",
"commit": "npx git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoodwayGroup/lib-tradedesk.git"
},
"keywords": [
"tradedesk",
"stream",
"api"
],
"author": "https://github.com/mrlannigan",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoodwayGroup/lib-tradedesk/issues"
},
"homepage": "https://github.com/GoodwayGroup/lib-tradedesk#readme",
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"eslint": "8.38.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-tsdoc": "0.2.17",
"husky": "8.0.3",
"jest": "29.5.0",
"nock": "13.3.0",
"ts-jest": "29.1.0",
"typedoc": "0.24.1",
"typedoc-plugin-markdown": "3.15.1",
"typescript": "5.0.4",
"@commitlint/cli": "17.6.0",
"@commitlint/config-conventional": "17.6.0",
"@digitalroute/cz-conventional-changelog-for-jira": "8.0.0",
"commitizen": "4.3.0"
},
"engines": {
"node": ">=14.21.0"
},
"jest": {
"clearMocks": true,
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"lcov",
"text",
"text-summary",
"json"
],
"collectCoverageFrom": [
"src/**/*.{ts,js,jsx,mjs}"
],
"setupFiles": [],
"testMatch": [
"<rootDir>/src/**/*.spec.ts"
],
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {},
"modulePaths": [
"<rootDir>/src"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"web.jsx",
"jsx",
"web.js",
"mjs",
"node"
]
},
"dependencies": {
"node-fetch": "2.6.9"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"jiraPrefix": "JIRA",
"jiraOptional": true,
"skipScope": false
}
}
}