-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 944 Bytes
/
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
{
"name": "word-search-puzzle",
"version": "0.0.1",
"description": "Word Search puzzle",
"keywords": [
"puzzle",
"wordsearch"
],
"author": "Johan Haverhals",
"type": "module",
"engines": {
"node": ">=14.0",
"npm": ">=6.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf lib test-results",
"format": "prettier src/**/*.ts --write",
"serve": "web-dev-server --node-resolve --watch",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch"
},
"devDependencies": {
"@types/chai": "4.1.3",
"@types/mocha": "5.2.7",
"@web/dev-server": "0.1.5",
"@web/dev-server-esbuild": "0.2.11",
"@web/test-runner": "0.12.10",
"@web/test-runner-junit-reporter": "0.4.0",
"@esm-bundle/chai": "4.3.0",
"eslint": "7.19.0",
"mocha": "8.2.1",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"typescript": "^4.1.3"
}
}