-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
162 lines (162 loc) · 4.21 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "irontask",
"version": "2.1.0",
"description": "Persistent, queryable task scheduling for Azure Cosmos DB",
"keywords": [
"task",
"job",
"message",
"cron",
"schedule",
"Azure",
"Cosmos",
"CosmosDB",
"persistent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/princjef/irontask.git"
},
"author": "Microsoft",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write --loglevel warn \"src/**/*.ts\" \"*.md\"",
"format:verify": "prettier --check --loglevel warn \"src/**/*.ts\" \"*.md\"",
"lint": "eslint -c .eslintrc.js --fix --ext .ts src",
"lint:verify": "eslint -c .eslintrc.js --ext .ts src",
"prebuild": "npm run clean && npm run format && npm run lint",
"build": "tsc",
"prebuild:verify": "npm run clean && npm run format:verify && npm run lint:verify",
"build:verify": "tsc",
"pretest": "npm run build:verify",
"test": "jest --testTimeout=60000 --runInBand",
"test:unit": "jest --testTimeout=60000 --testPathIgnorePatterns src/test/",
"test:functional": "jest --testTimeout=60000 --testPathPattern src/test/.*\\.spec\\..*",
"prepublishOnly": "npm run build:verify",
"watch": "tsc -w",
"watch:test": "jest --watch",
"show-coverage": "opener coverage/index.html",
"prerelease": "npm run build:verify",
"release": "semantic-release"
},
"peerDependencies": {
"@azure/identity": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"dependencies": {
"@azure/arm-cosmosdb": "^15.6.0",
"@azure/cosmos": "^3.6.3",
"cron-parser": "^2.17.0",
"json-merge-patch": "^0.2.3",
"lodash.clonedeep": "^4.5.0",
"p-queue": "^6.4.0",
"retry": "^0.13.1",
"uuid": "^8.0.0"
},
"devDependencies": {
"@azure/identity": "^3.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@princjef/tslint-config": "^2.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.5",
"@semantic-release/npm": "^7.0.5",
"@types/jest": "^27.0.0",
"@types/json-merge-patch": "0.0.4",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^8.10.60",
"@types/retry": "^0.12.0",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^7.4.0",
"commitlint-azure-pipelines-cli": "^1.0.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^3.1.0",
"jest": "^27.0.0",
"jest-junit": "^10.0.0",
"moment": "^2.25.3",
"opener": "^1.5.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.7",
"ts-jest": "^27.0.0",
"typescript": "^4.5.0"
},
"files": [
"/src/",
"/dist/",
"!/src/test/",
"!/dist/test/",
"!/src/**/*.spec.*",
"!/dist/**/*.spec.*"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"preset": "ts-jest",
"roots": [
"src/"
],
"reporters": [
"default",
"jest-junit"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/test/**/*",
"!src/sproc/**/*",
"!**/*.spec.ts"
],
"coverageReporters": [
"text",
"cobertura",
"json",
"html"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
}
}