-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "@letsflow/testing",
"version": "0.0.0",
"description": "Test suite for LetsFlow",
"author": "Arnold Daniels <arnold@jasny.net>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@cucumber/cucumber": "^12.5.0",
"@letsflow/core": "^1.5.0",
"better-ajv-errors": "^2.0.2",
"chai": "^6.2.2",
"get-value": "^4.0.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/get-value": "^3.0.5",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unused-imports": "^4.3.0",
"prettier": "^3.7.4",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3"
},
"files": [
"lib",
"cucumber.example.yaml"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc --project tsconfig.build.json",
"test": "cucumber-js",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}