-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·62 lines (62 loc) · 1.56 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
60
61
62
{
"name": "battleships-dev-tools",
"version": "0.0.1",
"description": "The dev tools for Battleships game.",
"scripts": {
"lint": "eslint --quiet '**/*.js'",
"precommit": "lint-staged"
},
"keywords": [
"battleships",
"game"
],
"repository": {
"type": "git",
"url": "https://github.com/ships-online/battleships-dev-tools.git"
},
"author": "Oskar Wróbel <kontakt@oskarwrobel.pl>",
"license": "ISC",
"dependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"chai": "^4.0.2",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-print": "^2.0.1",
"gulp-replace": "^1.0.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.3.3",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.2.3",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"minimist": "^1.2.0",
"mocha": "^3.4.2",
"sinon": "^2.3.5",
"webpack": "^3.5.5",
"webpack-merge": "^4.1.2"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-ckeditor5": "^1.0.6",
"husky": "^0.14.3",
"lint-staged": "^7.2.0"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"bin": {
"battleships-test": "./bin/test.js"
}
}