-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.54 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
{
"name": "@jupiterone/graph-nowsecure",
"version": "2.0.1",
"description": "A graph conversion tool for https://nowsecure.com/",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/graph-nowsecure"
},
"license": "MPL-2.0",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"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",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write '**/*.{ts,js,json,css,md,yml}'",
"type-check": "tsc",
"test": "jest",
"test:env": "LOAD_ENV=1 yarn test",
"test:ci": "yarn lint && yarn type-check && yarn test",
"build": "tsc -p tsconfig.dist.json --declaration && cp README.md dist/README.md",
"prepush": "yarn lint && yarn type-check && jest --changedSince main"
},
"dependencies": {
"@lifeomic/attempt": "^3.0.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@jupiterone/integration-sdk-core": "^7.3.1",
"@jupiterone/integration-sdk-dev-tools": "^7.3.1",
"@jupiterone/integration-sdk-testing": "^7.3.1",
"@types/node": "^14",
"@types/node-fetch": "^2",
"dotenv": "^8.2.0",
"jest-fetch-mock": "^3.0.3"
},
"peerDependencies": {
"@jupiterone/integration-sdk-core": "^7.3.1"
}
}