forked from JupiterOne-Archives/graph-fleetdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.46 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
{
"name": "@jupiterone/graph-fleetdm",
"version": "0.1.1",
"description": "An integration and graph conversion project for FleetDM",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-fleetdm"
},
"license": "MPL-2.0",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src",
"jupiterone"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0 <19.x"
},
"scripts": {
"clean": "rm -fr src/steps/**/__recordings__",
"start": "j1-integration collect",
"graph": "j1-integration visualize",
"graph:types": "j1-integration visualize-types",
"graph:spec": "j1-integration visualize-types --project-path docs/spec --output-file ./.j1-integration/types-graph/index.spec.html",
"graph:dependencies": "j1-integration visualize-dependencies",
"validate:questions:dry": "j1-integration validate-question-file --dry-run",
"validate:questions": "j1-integration validate-question-file -a $MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID -k $MANAGED_QUESTIONS_JUPITERONE_API_KEY",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,js,json,css,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,css,md,yml,yaml}\"",
"type-check": "tsc",
"test": "jest",
"test:env": "LOAD_ENV=1 yarn test",
"test:ci": "yarn format:check && yarn lint && yarn type-check && yarn test",
"build": "tsc -p tsconfig.dist.json --declaration && cp README.md dist/README.md && cp -r jupiterone/ dist/jupiterone/",
"build:docker": "tsc --declaration false --emitDeclarationOnly false -p tsconfig.dist.json",
"prepush": "yarn format:check && yarn lint && yarn type-check && jest --changedSince main",
"postversion": "cp package.json ./dist/package.json"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^10.0.0"
},
"devDependencies": {
"@jupiterone/integration-sdk-core": "^10.0.0",
"@jupiterone/integration-sdk-dev-tools": "^10.0.0",
"@jupiterone/integration-sdk-testing": "^10.0.0",
"auto": "^10.36.5"
},
"auto": {
"plugins": [
[
"npm",
{
"setRcToken": false,
"publishFolder": "./dist"
}
],
"released"
],
"onlyPublishWithReleaseLabel": true,
"shipit": {
"prerelease": false
}
},
"dependencies": {
"gaxios": "^6.0.4",
"global": "^4.4.0",
"p-map": "4.0.0",
"ts-node": "^10.9.1"
}
}