forked from AmadeusITGroup/kassette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.28 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
{
"name": "@amadeus-it-group/kassette",
"version": "1.2.0",
"description": "Development server, used mainly for testing, which proxies requests and is able to easily manage local mocks.",
"scripts": {
"prepare": "husky install && npm run build && npm run apidoc",
"lint": "tslint -c packages/tslint.json \"packages/**/*.ts\"",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"test": "npm run ut",
"ut": "jest",
"ut:watch": "jest --watch",
"ut:coverage": "jest --coverage",
"build": "rimraf ./dist && rimraf ./build && rollup --failAfterWarnings -c ./packages/rollup.config.js && tsc -p ./packages/tsconfig.dts.json",
"apidoc": "rimraf ./build/apidoc && api-extractor run --config ./packages/api-extractor.json --verbose && api-documenter markdown -i build/apidoc/input -o build/apidoc/output",
"e2e": "npm run build && mocha packages/e2e/run.js"
},
"main": "dist/index.js",
"bin": "./bin/index.js",
"keywords": [
"Record",
"Replay",
"Test",
"Testing",
"Server",
"Mock",
"Mocking",
"Amadeus",
"Software Factory"
],
"repository": {
"type": "git",
"url": "https://github.com/AmadeusITGroup/kassette"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@microsoft/api-documenter": "^7.13.76",
"@microsoft/api-extractor": "^7.19.2",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/mime-types": "^2.1.1",
"@types/node": "^16.11.12",
"@types/node-forge": "^0.10.10",
"@types/yargs": "^17.0.7",
"chai": "^4.2.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"koa": "^2.13.4",
"koa-router": "^10.1.1",
"memfs": "^3.4.0",
"mocha": "^9.1.3",
"playwright": "^1.17.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.61.0",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"tslint": "^6.0.0",
"typescript": "^4.5.3"
},
"dependencies": {
"chalk": "^4.1.2",
"date-fns": "^2.27.0",
"interpret": "^2.2.0",
"mime-types": "^2.1.34",
"node-forge": "^0.10.0",
"rechoir": "^0.8.0",
"yargs": "^17.3.0"
}
}