-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 803 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 803 Bytes
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
{
"name": "minesweeper",
"version": "1.0.5",
"description": "Provides functionality that can be used to create a Minesweeper clone.",
"main": "dist/minesweeper.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binaryluke/Minesweeper.git"
},
"author": "Luke Howard <binaryluke@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/binaryluke/Minesweeper/issues"
},
"homepage": "https://github.com/binaryluke/Minesweeper#readme",
"devDependencies": {
"chai": "^3.3.0",
"gulp": "^3.9.0",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.4.1",
"gulp-util": "^3.0.6",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.3"
}
}