-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 921 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
31
32
33
34
35
36
37
{
"name": "tictactoe-wildtech",
"version": "1.0.0",
"description": "Jogo da Velha com JavaScript vanilla, usando as cores da Wildtech",
"main": "script.js",
"scripts": {
"start": "npx http-server -p 3001",
"dev": "npx http-server -p 3001 -o",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint script.js tests/",
"lint:fix": "eslint script.js tests/ --fix",
"check": "npm run lint && npm run test",
"check:fix": "npm run lint:fix && npm run test"
},
"keywords": [
"tictactoe",
"javascript",
"game",
"vanilla-js",
"wildtech"
],
"author": "dwildt",
"license": "MIT",
"devDependencies": {
"eslint": "^9.34.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
}
}