This repository was archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.84 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
{
"name": "@jupiterone/graph-threatstack",
"version": "2.0.4",
"description": "JupiterOne managed integration for Threat Stack.",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-threatstack"
},
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"files": [
"LICENSE",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "ts-node --require dotenv/config tools/execute.ts | bunyan",
"start:containers": "docker-compose up -d",
"stop:containers": "docker-compose down",
"prebuild": "yarn test",
"build": "rm -rf dist/* && yarn build:types && yarn build:src && yarn build:docs",
"build:src": "babel src --extensions '.ts' --out-dir dist",
"build:docs": "ts-node tools/docs.ts",
"build:types": "tsc --project tsconfig.dist.json --declaration --emitDeclarationOnly",
"lint": "yarn lint:ts && yarn lint:md",
"lint:md": "remark .",
"lint:ts": "tslint --project .",
"format": "yarn prettier --write '**/*.{ts,js,json,md}'",
"prepack": "yarn build",
"test": "jest"
},
"dependencies": {
"@hapi/hawk": "^7.1.0",
"@jupiterone/jupiter-managed-integration-sdk": "^36.0.1",
"@lifeomic/attempt": "^3.0.0",
"aws-sdk": "^2.828.0",
"axios": "^0.21.1",
"axios-extensions": "^3.0.6",
"node-fetch": "^2.6.0",
"p-queue": "^6.0.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/bunyan": "^1.8.5",
"@types/fs-extra": "^7.0.0",
"@types/gremlin": "^3.4.2",
"@types/jest": "^24.0.0",
"@types/node": "~8.10.0",
"@types/node-fetch": "^2.3.5",
"@types/uuid": "^3.4.4",
"bunyan": "^1.8.12",
"dotenv": "^8.0.0",
"fs-extra": "^8.0.1",
"husky": "^2.4.0",
"jest": "^24.9.0",
"jest-haste-map": "^24.9.0",
"jest-resolve": "^24.9.0",
"lint-staged": "^8.1.3",
"prettier": "1.18.2",
"remark-cli": "^6.0.1",
"remark-lint": "^6.0.4",
"remark-preset-lint-consistent": "^2.0.2",
"remark-preset-lint-markdown-style-guide": "^2.1.2",
"remark-preset-lint-recommended": "^3.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.1.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.md": [
"remark .",
"prettier --write",
"git add"
],
"*.ts": [
"tslint --project .",
"prettier --write",
"git add"
],
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"ignore": []
}
}