-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
{
"name": "@jupiterone/peril",
"version": "0.3.9",
"description": "Project Risk Analysis and Reporting Tool",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/peril"
},
"license": "MIT",
"author": "JupiterOne <developer@jupiterone.com>",
"main": "dist/index.js",
"bin": {
"peril": "./bin/run"
},
"scripts": {
"build": "yarn ttsc -p tsconfig-dist.json",
"prebuild": "yarn test && rm -rf dist",
"postbuild": "cp -R bin LICENSE assets dist/",
"posttest": "yarn lint",
"lint": "eslint --ext .ts,.tsx,.js,.jsx .",
"test": "jest --silent"
},
"dependencies": {
"@jupiterone/data-model": "^0.16.3",
"@jupiterone/jupiterone-client-nodejs": "^0.23.0",
"@lifeomic/attempt": "^3.0.0",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@types/fs-extra": "^9.0.6",
"@types/node": ">=14.14.7",
"axios": "^0.21.1",
"escape-string-regexp": "^4.0.0",
"execa": "^5.0.0",
"executable": "^4.1.1",
"faker": "^5.1.0",
"fs-extra": "^9.1.0",
"globby": "^11.0.1",
"lodash": "^4.17.21",
"memfs": "^3.2.0",
"prompts": "^2.4.0",
"rimraf": "^3.0.2",
"supports-ansi": "^1.0.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@jupiterone/typescript-tools": "^13.0.2",
"@oclif/dev-cli": "^1.26.0",
"@types/faker": "^5.1.5",
"@types/lodash": "^4.14.165",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.3.0",
"ts-node": "^9.1.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src",
"/assets",
"defaultConfig.json"
],
"oclif": {
"bin": "peril"
},
"types": "dist/index.d.ts"
}