-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "Fizz",
"title": "Fizz",
"description": "An extensible JavaScript library for writing interactive 2D graphics and simulations with HTML5 canvas.",
"version": "0.0.2",
"main": "dist/min/fizz.min.js",
"scripts": {
"build": "grunt minify",
"test": "grunt test",
"watch": "grunt watch"
},
"homepage": "https://github.com/MichaelZalla/Fizz",
"author": {
"name": "Michael Zalla",
"url": "http://zalla.io"
},
"repository": {
"type": "git",
"url": "https://github.com/MichaelZalla/Fizz"
},
"bugs": {
"url": "https://github.com/MichaelZalla/Fizz/issues"
},
"keywords": [
"game",
"interaction",
"graphic",
"2D",
"canvas",
"html5",
"javascript",
"library",
"abstraction"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/MichaelZalla/Fizz/LICENSE"
}
],
"dependencies": {
"grunt-cli": "^1.3.2"
},
"devDependencies": {
"grunt": "*",
"grunt-contrib-jasmine": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-debug-task": "*",
"grunt-verbosity": "*",
"string-format": "*"
},
"private": true
}