-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.23 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.23 KB
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": "voronoi-minesweeper",
"description": "Minesweeper game with a mathematic twist. This was done as part of a project with the [Sydney Javascript Study Group](http://www.meetup.com/Sydney-JavaScript-Study-Group/).",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "git checkout --detach && jspm install && jspm bundle index index-bundle.js --inject --minify && git add -f . && git commit -m \"Release\" && git push -f origin HEAD:gh-pages && git checkout -"
},
"repository": {
"type": "git",
"url": "https://github.com/clark-pan/voronoi-minesweeper.git"
},
"author": "Clark Pan",
"license": "ISC",
"bugs": {
"url": "https://github.com/clark-pan/voronoi-minesweeper/issues"
},
"homepage": "https://github.com/clark-pan/voronoi-minesweeper",
"jspm": {
"dependencies": {
"lodash": "npm:lodash@^3.10.1",
"voronoi": "npm:voronoi@^1.0.0"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
},
"overrides": {
"github:paperjs/paper.js@0.9.25": {
"main": "dist/paper-full.js"
}
}
}
}