-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "@jupiterone/graph-pagerduty",
"version": "3.1.1",
"description": "A graph conversion tool for https://www.pagerduty.com/.",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-pagerduty"
},
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "j1-integration collect",
"graph": "j1-integration visualize",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,js,json,css,md,yml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,css,md,yml}\"",
"type-check": "tsc",
"test": "LOAD_ENV=1 yarn jest",
"test:ci": "yarn lint && yarn type-check && yarn test",
"build": "tsc -p tsconfig.dist.json --declaration",
"prepush": "yarn lint && yarn type-check && jest --changedSince main",
"prepack": "yarn build"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^8.9.0"
},
"dependencies": {
"@lifeomic/attempt": "^3.0.0",
"axios": "^0.21.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@jupiterone/integration-sdk-core": "^8.9.0",
"@jupiterone/integration-sdk-dev-tools": "^8.9.0",
"@jupiterone/integration-sdk-testing": "^8.9.0",
"dotenv": "^8.2.0"
}
}