forked from craftyjs/Crafty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "craftyjs",
"version": "0.6.3",
"title": "Crafty game framework",
"author": {
"name": "Louis Stowasser",
"url": "http://craftyjs.com/"
},
"branches": {
"develop": true
},
"main": "src/crafty.js",
"repository": {
"type": "git",
"url": "https://github.com/craftyjs/Crafty.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type": "GPL",
"url": "http://www.opensource.org/licenses/gpl-license.php"
}
],
"description": "Crafty is a modern component and event based framework for javascript games that targets DOM and canvas. Check out the DEV version if you want to play with the latest and greatest.",
"keywords": [
"framework",
"javascript"
],
"scripts": {
"test": "grunt check"
},
"jsfiddle": "disable",
"homepage": "https://github.com/craftyjs/Crafty",
"dependencies": {
"brfs": "1.0.1"
},
"devDependencies": {
"grunt-contrib-connect": "^0.8.0",
"coffee-script": "1.7.1",
"grunt": "^0.4.5",
"grunt-banner": "^0.2.3",
"grunt-browserify": "^2.1.4",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-qunit": "^0.4.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsvalidate": "^0.2.2",
"marked": "^0.3.2"
},
"browserify": {
"transform": [ "brfs" ]
}
}