-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@yufuzu/shipbattle-board",
"version": "1.0.39",
"description": "Creates random maps for battleship game",
"main": "lib/board-generator.min.js",
"scripts": {
"lint": "eslint src",
"v:patch": "npm version --no-git-tag-version patch",
"build": "npm run v:patch && webpack --env.production",
"start": "webpack-dev-server --open --progress --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/Jitra/shipbattle-generator.git"
},
"keywords": [
"shipbattle",
"generator",
"map",
"web worker"
],
"author": "Mikołaj Woźniak",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jitra/shipbattle-generator/issues"
},
"homepage": "https://github.com/Jitra/shipbattle-generator",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"babel-eslint": "^8.0.3",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-env": "^7.0.0-beta.3",
"babel-register": "^7.0.0-beta.3",
"chai": "^4.1.2",
"copy-pkg-json-webpack-plugin": "0.0.38",
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"mocha": "^4.0.1",
"nyc": "^13.1.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.14",
"worker-loader": "^2.0.0",
"yargs": "^10.0.3"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}