-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 739 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 739 Bytes
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
{
"name": "spec-by-example",
"version": "1.0.3",
"type": "module",
"description": "A JavaScript tool for running Specification by Example tests from Excel, CSV, and ODS files.",
"main": "src/index.js",
"bin": {
"spec-by-example": "./src/cli.js"
},
"jest": {
"transform": {}
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "Michael Scott",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.26.7",
"@babel/traverse": "^7.26.7",
"libreoffice-convert": "^1.6.0",
"winston": "^3.17.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
}
}