-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "snake.js",
"version": "1.0.0",
"description": "HTML5 Canvas snake game",
"main": "/src/snake.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "bower update && grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/NohponeX/snake.js.git"
},
"keywords": [
"game",
"javascript",
"canvas",
"HTML5"
],
"author": "Spafaridis Xenophon <nohponex@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NohponeX/snake.js/issues"
},
"homepage": "https://github.com/NohponeX/snake.js",
"devDependencies": {
"bower": "^1.4.1",
"grunt": "^0.4.5",
"grunt-comment-toggler": "^0.2.1",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-cssmin": "^0.12.3",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-less": "^1.0.1",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-gh-pages": "^0.10.0",
"grunt-html-build": "^0.5.0",
"grunt-html-validation": "^0.1.18",
"grunt-htmlclean": "^2.6.3",
"grunt-jscs": "^1.8.0",
"grunt-jsdoc": "^0.5.8",
"jscs-jsdoc": "^1.0.1"
}
}