-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.11 KB
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
{
"name": "specmatic",
"version": "2.43.3",
"specmaticVersion": "2.43.3",
"description": "Node wrapper for Specmatic",
"main": "dist/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm test && rimraf dist && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --ignore 'src/**/__tests__/**/*.ts' --extensions \".ts,.js,.tsx\" --source-maps inline",
"test": "rimraf coverage && jest --coverage",
"prepack": "node src/downloadSpecmaticJar.js",
"prepare": "npm run prepack && npm run build:types && npm run build:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/specmatic/specmatic-node.git"
},
"keywords": [
"contract",
"testing",
"specmatic",
"contract driven development",
"cdd",
"openapi",
"swagger",
"asyncapi",
"api",
"mocking",
"stubbing"
],
"author": "Specmatic Team (info@specmaic.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/specmatic/specmatic-node/issues"
},
"homepage": "https://github.com/specmatic/specmatic-node#readme",
"bin": {
"specmatic": "dist/bin/index.js"
},
"specmatic": {
"logLevel": "debug"
},
"dependencies": {
"fast-xml-parser": "^5.0.0",
"shell-quote": "^1.8.3",
"terminate": "^2.8.0",
"tree-kill": "^1.2.2",
"winston": "^3.14.2"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/express": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/jest-when": "^3.5.5",
"@types/node": "^24.0.0",
"@types/shell-quote": "^1.7.5",
"@types/supertest": "^6.0.2",
"axios": "^1.12.2",
"express": "^4.21.0",
"jest": "^30.0.0",
"jest-extended": "^7.0.0",
"jest-mock-extended": "^4.0.0",
"jest-when": "^3.6.0",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"typescript": "^5.6.2"
}
}