forked from RedpointOps/error-sync-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 890 Bytes
/
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
{
"name": "error-sync-lib",
"version": "0.1.31",
"private": "true",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "rm -rf ./lib/esm && tsc",
"build:cjs": "rm -rf ./lib/cjs && tsc --module commonjs --outDir lib/cjs",
"lint": "eslint src --ext .ts",
"test": "jest --passWithNoTests src",
"dev": "npm run build:cjs && node lib/cjs/manualTest.js"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"dependencies": {
"aws-sdk": "^2.981.0",
"jira-client": "^6.22.0",
"newrelic-api-client": "^0.1.7",
"opsgenie-sdk": "^0.5.0",
"typescript": "^4.4.2"
},
"devDependencies": {
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"jest": "^27.1.0"
}
}