generated from JupiterOne-Archives/integration-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.83 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
{
"name": "@jupiterone/graph-fastly",
"version": "1.0.0",
"description": "A graph conversion tool for https://www.fastly.com",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-fastly"
},
"license": "MPL-2.0",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src",
"jupiterone"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"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",
"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}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,css,md,yml}\"",
"type-check": "tsc",
"test": "yarn validate:questions:dry && yarn jest",
"test:env": "LOAD_ENV=1 yarn test",
"test:ci": "yarn validate:questions && yarn lint && yarn type-check",
"prebuild": "rm -rf ./dist",
"build": "yarn tsc -p tsconfig.dist.json --declaration",
"postbuild": "cp README.md dist/README.md && cp -R jupiterone dist/",
"prepush": "yarn lint && yarn type-check && jest --changedSince main"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^7.0.0"
},
"devDependencies": {
"@jupiterone/integration-sdk-core": "^7.0.0",
"@jupiterone/integration-sdk-dev-tools": "^7.0.0",
"@jupiterone/integration-sdk-testing": "^7.0.0"
},
"dependencies": {
"axios": "^0.23.0"
}
}