-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "travelling-sales-person",
"version": "1.0.0",
"description": "Travelling sales person problem using javascript",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"dev": "webpack-dev-server --mode=development",
"build": "webpack --mode=production",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devalberg/travelling-sales-person.git"
},
"keywords": [
"travelling",
"sales",
"person"
],
"author": "Daniel Valberg",
"license": "ISC",
"bugs": {
"url": "https://github.com/devalberg/travelling-sales-person/issues"
},
"homepage": "https://devalberg.github.io/travelling-sales-person",
"dependencies": {
"gh-pages": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"canvas": "^2.4.1",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"jsdom": "^14.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
}
}