forked from JupiterOne-Archives/graph-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.96 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
{
"name": "@jupiterone/jupiter-integration-azure",
"version": "0.1.0",
"description": "A JupiterOne managed integration for https://azure.microsoft.com/.",
"main": "dist/index.js",
"repository": "https://github.com/JupiterOne/jupiter-integration-azure",
"license": "SEE LICENSE IN LICENSE",
"files": [
"LICENSE",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "ts-node --require dotenv/config 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",
"build:docs:model": "ts-node tools/entities-relationships-table-md.ts",
"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": {
"@microsoft/microsoft-graph-client": "^1.5.2",
"node-fetch": "^2.3.0"
},
"peerDependencies": {
"@jupiterone/jupiter-managed-integration-sdk": "^23.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",
"@jupiterone/jupiter-managed-integration-sdk": "^23.0.2",
"@microsoft/microsoft-graph-types": "^1.8.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",
"@types/node-fetch": "^2.1.6",
"dotenv": "^7.0.0",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"jest": "^24.0.0",
"jest-haste-map": "^24.0.0",
"jest-resolve": "^24.1.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.1.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"@types/nock": "^9.3.1",
"nock": "^10.0.6"
},
"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": []
}
}