-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "@jupiterone/sast-scan-tools",
"version": "1.0.4",
"description": "tools for using AppThreat/sast-scan with JupiterOne",
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write '**/*.{ts,js,json,css,md,yml}'",
"type-check": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test:ci": "yarn lint && yarn type-check && yarn test",
"prebuild": "yarn test:ci",
"build": "tsc -p tsconfig.dist.json --declaration",
"prepush": "yarn test:ci",
"prepack": "yarn build"
},
"dependencies": {
"@jupiterone/jupiterone-client-nodejs": "^0.21.1",
"@zouloux/files": "^0.6.0",
"await-spawn": "^3.0.0",
"axios": "^0.19.2",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"require-self-ref": "^2.0.1",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}