-
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) · 904 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 904 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": "toyrobot",
"version": "1.0.0",
"description": "This is a program that simulates a Toy Robot moving on a table",
"main": "index.js",
"scripts": {
"start": "babel-node ./src/index.js",
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage",
"test:e2e": "playwright test",
"security:check": "npm audit --audit-level=moderate",
"web:build": "node ./scripts/build-site.js",
"web:start": "npm run web:build && node ./scripts/serve-static.js dist"
},
"author": "Leo",
"license": "ISC",
"jest": {
"testPathIgnorePatterns": ["/node_modules/", "/test/e2e/"]
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/register": "^7.23.7",
"@playwright/test": "^1.54.2",
"jest": "^29.7.0",
"prettier": "3.2.5"
}
}