forked from stoplightio/prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
{
"private": true,
"name": "@stoplight/prism-cli",
"license": "Apache-2.0",
"version": "3.0.0",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/prism.git"
},
"scripts": {
"lint": "tslint -p packages/tsconfig.test.json",
"lint.fix": "yarn lint --fix",
"build": "tsc --build ./packages/tsconfig.build.json",
"posttest": "yarn lint",
"test": "jest --maxWorkers=2",
"test.coverage": "yarn test --coverage",
"test.watch": "yarn test --watchAll",
"release": "lerna version",
"prebuild.binary": "yarn build",
"build.binary": "npx pkg --output ./cli-binaries/prism-cli ./packages/cli/",
"test.harness": "jest -c ./jest.harness.config.js"
},
"devDependencies": {
"@stoplight/types": "^11.1.1",
"@types/caseless": "^0.12.2",
"@types/chai": "^4.2.0",
"@types/chance": "^1.0.6",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/json-schema": "^7.0.3",
"@types/lodash": "^4.14.141",
"@types/nock": "^11.1.0",
"@types/node": "^12.7.2",
"@types/pino": "^5.8.9",
"@types/signale": "^1.2.1",
"@types/split2": "^2.1.6",
"@types/type-is": "^1.6.3",
"@types/urijs": "^1.19.4",
"abstract-logging": "^1.0.0",
"chance": "^1.0.18",
"diff-js-xml": "^1.0.5",
"gavel": "^8.0.3",
"glob-fs": "^0.1.7",
"http-string-parser": "^0.0.6",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"lint-staged": "^9.2.3",
"nock": "^11.3.3",
"tmp": "^0.1.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.19.0",
"tslint-config-stoplight": "^1.3.0",
"typescript": "^3.5.3"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"**/packages/**/*.ts": [
"tslint -p packages/tsconfig.test.json --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}