-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.49 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/data-model",
"version": "0.57.0",
"description": "Automatically generated package.json, please edit manually",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/data-model"
},
"license": "MPL-2.0",
"main": "dist/index.js",
"files": [
"dist"
],
"author": "JupiterOne <[email protected]>",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "yarn tsc --project tsconfig.dist.json --declaration",
"generate-schema-imports": "./tools/generate-schema-imports.sh && ./tools/generate-register-schemas-function.sh",
"generate-resolved-schemas": "node -r ts-node/register tools/generate-resolved-schemas/index.ts src/schemas external/resolvedSchemas.json && prettier --write external/resolvedSchemas.json",
"test": "jest",
"lint": "eslint src --ext .ts,.js",
"format": "prettier --write '**/*.{ts,js,json,md}'",
"prepack": "yarn build",
"prepare": "husky install"
},
"dependencies": {
"ajv": "^8.0.0",
"ajv-formats": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.19.29",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^6.0.0",
"jest": "^29.7.0",
"lint-staged": "^10.5.4",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}