-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 969 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
{
"name": "maze1",
"version": "1.0.0",
"description": "maze generator",
"main": "maze.js",
"scripts": {
"test": "mocha buildScripts/testSetup.js \"src/**/*.test.js\"",
"lint": "./node_modules/.bin/eslint \"src/**/*.js\" --ignore-pattern bundle.js",
"build": "./node_modules/.bin/webpack",
"start": "node buildScripts/srcServer.js"
},
"author": "Henrik Hafstrøm Johnsen",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.19.0",
"eslint-config-google": "^0.14.0",
"express": "^4.16.4",
"mocha": "^10.0.0",
"open": ">=6.0.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hafstroem/maze-generator.git"
},
"keywords": [
"maze",
"generator"
],
"bugs": {
"url": "https://github.com/hafstroem/maze-generator/issues"
},
"homepage": "https://github.com/hafstroem/maze-generator#readme"
}