-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "@cucumber/screenplay",
"version": "5.3.0",
"description": "Write better scenarios with Cucumber.js",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"peerDependencies": {
"@cucumber/cucumber": "^11.0.0"
},
"devDependencies": {
"@cucumber/cucumber": "11.2.0",
"@types/node": "22.10.10",
"@types/mocha": "10.0.10",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"assembly-diagrams": "0.0.1",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"mocha": "^11.0.0",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"source-map-support": "^0.5.21",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"test": "npm run mocha",
"mocha": "mocha",
"prepublishOnly": "npm run build",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test",
"pretty-quick": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cucumber/screenplay.js.git"
},
"keywords": [
"testing",
"bdd",
"cucumber",
"Screenplay"
],
"author": "Cucumber Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/screenplay.js/issues"
},
"homepage": "https://github.com/cucumber/screenplay.js#readme",
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}