forked from stoplightio/prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.47 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"private": true,
"license": "Apache-2.0",
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/prism.git"
},
"scripts": {
"lint": "eslint ./packages/**/src/*.ts",
"lint.fix": "yarn lint --fix",
"clean": "rm -rf ./packages/**/dist ./packages/**/*.tsbuildinfo",
"build": "npm run clean && ttsc --build --verbose ./packages/tsconfig.build.json",
"posttest": "yarn lint",
"test": "node --expose-gc ./node_modules/.bin/jest",
"release": "lerna version",
"prebuild.binary": "yarn build",
"build.binary": "npx pkg --output ./cli-binaries/prism-cli --options max_old_space_size=4096 ./packages/cli/",
"test.harness": "jest -c ./jest.harness.config.js"
},
"resolutions": {
"sanitize-html": "2.12.1"
},
"devDependencies": {
"@stoplight/types": "^14.1.0",
"@types/caseless": "^0.12.2",
"@types/content-type": "^1.1.5",
"@types/jest": "^29.5.4",
"@types/json-schema": "^7.0.9",
"@types/lodash": "^4.14.175",
"@types/node": "^13.1.1",
"@types/node-fetch": "2.5.10",
"@types/pino": "6.3.12",
"@types/postman-collection": "^3.5.7",
"@types/raw-body": "^2.3.0",
"@types/signale": "^1.4.2",
"@types/split2": "^2.1.6",
"@types/type-is": "^1.6.3",
"@types/uri-template-lite": "^19.12.1",
"@types/urijs": "^1.19.17",
"@types/whatwg-mimetype": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^4.33.0",
"abstract-logging": "^2.0.1",
"diff-js-xml": "^1.0.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^4.2.1",
"fast-xml-parser": "^4.2.0",
"form-data": "^4.0.0",
"gavel": "10.0.3",
"glob": "^7.2.0",
"http-string-parser": "^0.0.6",
"husky": "^8.0.1",
"jest": "^29.6.4",
"lerna": "~8.1.3",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"nock": "^13.1.3",
"node-fetch": "^2.6.7",
"prettier": "^2.4.1",
"split2": "^3.2.2",
"tmp": "^0.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^9.1.1",
"ts-transform-import-path-rewrite": "^0.3.0",
"tsconfig-paths": "^4.1.0",
"ttypescript": "^1.5.15",
"type-is": "^1.6.18",
"typescript": "4.9.3"
},
"lint-staged": {
"**/packages/**/*.ts": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}