This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.7 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
{
"name": "@jupiterone/graph-veracode",
"version": "1.5.10",
"description": "A JupiterOne managed integration for https://www.veracode.com",
"main": "dist/index.js",
"repository": "https://github.com/jupiterone/graph-veracode",
"license": "SEE LICENSE IN LICENSE",
"files": [
"LICENSE",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "ts-node --require dotenv/config --files tools/execute.ts | bunyan",
"start:graph": "docker run -d --rm --name jupiterone-local-graph -p 8182:8182 tinkerpop/gremlin-server:3.3",
"stop:graph": "docker stop jupiterone-local-graph",
"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": {
"@jupiterone/jupiter-managed-integration-sdk": "^36.0.1",
"@jupiterone/veracode-client": "^0.3.2",
"aws-sdk": "^2.828.0"
},
"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": "^5.0.5",
"@types/gremlin": "^3.4.2",
"@types/jest": "^24.0.6",
"@types/node": "^12",
"bunyan": "^1.8.12",
"dotenv": "^7.0.0",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-haste-map": "^24.7.1",
"jest-resolve": "^24.7.1",
"lint-staged": "^8.1.3",
"prettier": "1.16.4",
"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.8.3"
},
"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": []
}
}