-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.45 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
{
"name": "cck-devkit",
"version": "11.0.0",
"description": "Development kit for the cucumber compatibility kit packages",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"pretest": "npm run build",
"test": "run-for-every-file --src 'samples/**/*.ndjson' --run 'npx shx cat {{src-file}} | node dist/validate.js'",
"generate-ndjson": "node ./dist/generate.js",
"pregenerate-ndjson": "npm run build",
"postgenerate-ndjson": "npm test && npm run copy-samples",
"copy-samples": "npm run copy-to:javascript && npm run copy-to:ruby",
"copy-to:javascript": "shx cp -r samples/* ../javascript/features",
"copy-to:ruby": "shx cp -r samples/* ../ruby/features && rm -rf ../ruby/features/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cucumber/compatibility-kit.git"
},
"author": "\"Aurelien Reeves (https://github.com/aurelien-reeves)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/compatibility-kit/issues"
},
"homepage": "https://github.com/cucumber/compatibility-kit#readme",
"devDependencies": {
"@cucumber/fake-cucumber": "18.0.0",
"@cucumber/messages": "27.2.0",
"@types/node": "^22.0.0",
"ajv": "^8.11.0",
"globby": "^11.1.0",
"run-for-every-file": "^1.1.0",
"shx": "^0.3.4",
"stream-buffers": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^5.0.0"
},
"overrides": {
"@cucumber/messages": "27.2.0"
}
}