forked from JupiterOne-Archives/graph-whitehat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.53 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
{
"name": "@jupiterone/jupiter-integration-whitehat",
"version": "0.4.1",
"description": "A JupiterOne managed integration for https://www.whitehatsec.com/",
"main": "index.js",
"repository": "https://github.com/jupiterone-io/jupiter-integration-whitehat",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"start": "ts-node --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": "rm -rf dist/*",
"build": "yarn build:types && yarn build:src && yarn build:files",
"build:src": "babel src --extensions '.ts' --out-dir dist",
"build:files": "ts-node tools/copy-dist-files.ts",
"build:types": "tsc --project tsconfig.dist.json --declaration --emitDeclarationOnly",
"build:publish": "yarn build && cd dist && yarn publish --access public",
"lint": "yarn lint:ts && yarn lint:md",
"lint:md": "remark .",
"lint:ts": "tslint --project .",
"format": "yarn prettier --write '**/*.{ts,js,json,md}'",
"test": "jest"
},
"dependencies": {
"@jupiterone/whitehat-client": "^0.3.0"
},
"peerDependencies": {
"@jupiterone/jupiter-managed-integration-sdk": "^20.1.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",
"@jupiterone/jupiter-managed-integration-sdk": "^20.1.0",
"@types/bunyan": "^1.8.5",
"@types/fs-extra": "^5.0.5",
"@types/jest": "^24.0.0",
"@types/node": "^10.12.20",
"bunyan": "^1.8.12",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-haste-map": "^24.5.0",
"jest-resolve": "^24.5.0",
"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.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint --project . --fix",
"prettier --write",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}