-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.12 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
{
"name": "tak-engine",
"version": "0.3.0",
"description": "Low Level Tak Engine",
"main": "src/index.js",
"scripts": {
"test": "cucumber-js",
"test-generate": "cucumber-js -p generate",
"build": "tsc --project ./tsconfig.json",
"build-watch": "tsc --watch --project ./tsconfig.json",
"build-test": "tsc --project ./features/tsconfig.json",
"build-test-watch": "tsc --watch --project ./features/tsconfig.json",
"lint": "eslint ."
},
"author": "Tobias Klauenberg",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^8.11.1",
"@serenity-js/assertions": "3.0.0",
"@serenity-js/console-reporter": "3.0.0",
"@serenity-js/core": "3.0.0",
"@serenity-js/cucumber": "3.0.0",
"@serenity-js/rest": "3.0.0",
"@serenity-js/serenity-bdd": "3.0.0",
"@sinonjs/fake-timers": "^10.0.2",
"@types/node": "^18.15.9",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"typescript": "^5.0.2"
}
}